00001 /*========================================================================== 00002 * Copyright (c) 2004 University of Massachusetts. All Rights Reserved. 00003 * 00004 * Use of the Lemur Toolkit for Language Modeling and Information Retrieval 00005 * is subject to the terms of the software license set forth in the LICENSE 00006 * file included with this software, and also available at 00007 * http://www.lemurproject.org/license.html 00008 * 00009 *========================================================================== 00010 */ 00011 00012 00013 // 00014 // FilterRejectNode 00015 // 00016 // 13 April 2004 -- tds 00017 // 00018 00019 #ifndef INDRI_FILTERREJECTNODE_HPP 00020 #define INDRI_FILTERREJECTNODE_HPP 00021 00022 #include "indri/greedy_vector" 00023 #include "indri/Extent.hpp" 00024 #include "indri/BeliefNode.hpp" 00025 #include "indri/ListIteratorNode.hpp" 00026 namespace indri 00027 { 00028 namespace infnet 00029 { 00030 00031 class FilterRejectNode : public BeliefNode { 00032 private: 00033 indri::utility::greedy_vector<indri::api::ScoredExtentResult> _extents; 00034 indri::utility::greedy_vector<bool> _matches; 00035 ListIteratorNode* _filter; 00036 BeliefNode* _disallowed; 00037 std::string _name; 00038 00039 public: 00040 FilterRejectNode( const std::string& name, ListIteratorNode* filter, 00041 BeliefNode* disallowed ); 00042 00043 double maximumBackgroundScore(); 00044 double maximumScore(); 00045 bool hasMatch( lemur::api::DOCID_T documentID ); 00046 const indri::utility::greedy_vector<bool>& hasMatch( lemur::api::DOCID_T documentID, const indri::utility::greedy_vector<indri::index::Extent>& extents ); 00047 const indri::utility::greedy_vector<indri::api::ScoredExtentResult>& score( lemur::api::DOCID_T documentID, indri::index::Extent &extent, int documentLength ); 00048 lemur::api::DOCID_T nextCandidateDocument(); 00049 void indexChanged( indri::index::Index& index ); 00050 00051 const std::string& getName() const; 00052 void annotate( class Annotator& annotator, lemur::api::DOCID_T documentID, indri::index::Extent &extent ); 00053 }; 00054 } 00055 } 00056 00057 #endif // INDRI_FILTERREJECTNODE_HPP 00058