nodevisitor.hh gecode/gist/nodevisitor.hpp Gecode::Gist::NodeVisitor Gecode::Gist::PostorderNodeVisitor Gecode::Gist::PreorderNodeVisitor Gecode Gecode::Gist /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *GuidoTack<tack@gecode.org> * *Copyright: *GuidoTack,2006 * *Lastmodified: *$Date:2010-07-3010:30:16+0200(Fri,30Jul2010)$by$Author:tack$ *$Revision:11306$ * *ThisfileispartofGecode,thegenericconstraint *developmentenvironment: *http://www.gecode.org * *Permissionisherebygranted,freeofcharge,toanypersonobtaining *acopyofthissoftwareandassociateddocumentationfiles(the *"Software"),todealintheSoftwarewithoutrestriction,including *withoutlimitationtherightstouse,copy,modify,merge,publish, *distribute,sublicense,and/orsellcopiesoftheSoftware,andto *permitpersonstowhomtheSoftwareisfurnishedtodoso,subjectto *thefollowingconditions: * *Theabovecopyrightnoticeandthispermissionnoticeshallbe *includedinallcopiesorsubstantialportionsoftheSoftware. * *THESOFTWAREISPROVIDED"ASIS",WITHOUTWARRANTYOFANYKIND, *EXPRESSORIMPLIED,INCLUDINGBUTNOTLIMITEDTOTHEWARRANTIESOF *MERCHANTABILITY,FITNESSFORAPARTICULARPURPOSEAND *NONINFRINGEMENT.INNOEVENTSHALLTHEAUTHORSORCOPYRIGHTHOLDERSBE *LIABLEFORANYCLAIM,DAMAGESOROTHERLIABILITY,WHETHERINANACTION *OFCONTRACT,TORTOROTHERWISE,ARISINGFROM,OUTOFORINCONNECTION *WITHTHESOFTWAREORTHEUSEOROTHERDEALINGSINTHESOFTWARE. * */ #ifndefGECODE_GIST_NODEVISITOR_HH #defineGECODE_GIST_NODEVISITOR_HH namespaceGecode{namespaceGist{ template<classCursor> classNodeVisitor{ protected: Cursorc; public: NodeVisitor(constCursor&c0); voidsetCursor(constCursor&c0); Cursor&getCursor(void); }; template<classCursor> classPostorderNodeVisitor:publicNodeVisitor<Cursor>{ protected: usingNodeVisitor<Cursor>::c; voidmoveToLeaf(void); public: PostorderNodeVisitor(constCursor&c); boolnext(void); voidrun(void); }; template<classCursor> classPreorderNodeVisitor:publicNodeVisitor<Cursor>{ protected: usingNodeVisitor<Cursor>::c; boolbacktrack(void); public: PreorderNodeVisitor(constCursor&c); boolnext(void); voidrun(void); }; }} #include<gecode/gist/nodevisitor.hpp> #endif //STATISTICS:gist-any