00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef INDRI_TERMFREQUENCYBELIEFNODE_HPP
00019 #define INDRI_TERMFREQUENCYBELIEFNODE_HPP
00020
00021 #include "indri/Annotator.hpp"
00022 #include "indri/ScoredExtentResult.hpp"
00023 #include <string>
00024 #include "indri/TermScoreFunction.hpp"
00025 #include "indri/ListBeliefNode.hpp"
00026 #include "indri/DocListFrequencyIterator.hpp"
00027
00028 class TermFrequencyBeliefNode : public BeliefNode {
00029 private:
00030 TermScoreFunction& _function;
00031 greedy_vector<ScoredExtentResult> _extents;
00032 indri::index::DocListFrequencyIterator& _list;
00033 double _maximumBackgroundScore;
00034 double _maximumScore;
00035 std::string _name;
00036
00037 public:
00038 TermFrequencyBeliefNode( const std::string& name,
00039 indri::index::DocListFrequencyIterator& list,
00040 TermScoreFunction& scoreFunction,
00041 double maximumBackgroundScore,
00042 double maximumScore );
00043
00044 int nextCandidateDocument();
00045 double maximumBackgroundScore();
00046 double maximumScore();
00047 const greedy_vector<ScoredExtentResult>& score( int documentID, int begin, int end, int documentLength );
00048 void annotate( class Annotator& annotator, int documentID, int begin, int end );
00049 bool hasMatch( int documentID );
00050 const std::string& getName() const;
00051 };
00052
00053 #endif // INDRI_TERMFREQUENCYBELIEFNODE_HPP
00054