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 // NotNode 00014 // 00015 // 26 August 2004 -- tds 00016 // 00017 00018 #ifndef INDRI_NOTNODE_HPP 00019 #define INDRI_NOTNODE_HPP 00020 00021 #include "indri/BeliefNode.hpp" 00022 #include "indri/greedy_vector" 00023 #include <string> 00024 namespace indri 00025 { 00026 namespace infnet 00027 { 00028 00029 class NotNode : public BeliefNode { 00030 private: 00031 BeliefNode* _child; 00032 indri::utility::greedy_vector<indri::api::ScoredExtentResult> _extents; 00033 indri::utility::greedy_vector<bool> _matches; 00034 std::string _name; 00035 00036 public: 00037 NotNode( const std::string& name, BeliefNode* child ); 00038 00039 double maximumBackgroundScore(); 00040 double maximumScore(); 00041 const indri::utility::greedy_vector<indri::api::ScoredExtentResult>& score( lemur::api::DOCID_T documentID, indri::index::Extent &extent, int documentLength ); 00042 bool hasMatch( lemur::api::DOCID_T documentID ); 00043 const indri::utility::greedy_vector<bool>& hasMatch( lemur::api::DOCID_T documentID, const indri::utility::greedy_vector<indri::index::Extent>& extents ); 00044 00045 void annotate( class Annotator& annotator, lemur::api::DOCID_T documentID, indri::index::Extent &extent); 00046 00047 lemur::api::DOCID_T nextCandidateDocument(); 00048 void indexChanged( indri::index::Index& index ); 00049 const std::string& getName() const; 00050 00051 virtual void setSiblingsFlag(int f){ 00052 bSiblings=f; // need to set the flag for the current node itself. 00053 if (_child) { _child->setSiblingsFlag(f); } 00054 } 00055 00056 }; 00057 } 00058 } 00059 00060 #endif // INDRI_NOTNODE_HPP