00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef INDRI_CACHEDFREQUENCYBELIEFNODE_HPP
00019 #define INDRI_CACHEDFREQUENCYBELIEFNODE_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/ListCache.hpp"
00027
00028 class CachedFrequencyBeliefNode : public BeliefNode {
00029 private:
00030 TermScoreFunction& _function;
00031 greedy_vector<ScoredExtentResult> _extents;
00032 greedy_vector<DocumentContextCount>::iterator _iter;
00033 ListCache::CachedList* _list;
00034 double _maximumBackgroundScore;
00035 double _maximumScore;
00036 std::string _name;
00037
00038 public:
00039 CachedFrequencyBeliefNode( const std::string& name,
00040 ListCache::CachedList* list,
00041 TermScoreFunction& scoreFunction,
00042 double maximumBackgroundScore,
00043 double maximumScore );
00044
00045 int nextCandidateDocument();
00046 double maximumBackgroundScore();
00047 double maximumScore();
00048 const greedy_vector<ScoredExtentResult>& score( int documentID, int begin, int end, int documentLength );
00049 void annotate( class Annotator& annotator, int documentID, int begin, int end );
00050 bool hasMatch( int documentID );
00051 const std::string& getName() const;
00052 };
00053
00054 #endif // INDRI_CACHEDFREQUENCYBELIEFNODE_HPP
00055