task-view.hpp /usr/include/gecode/int/cumulative.hh Gecode Gecode::Int Gecode::Int::Cumulative /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *GuidoTack<tack@gecode.org> * *Copyright: *ChristianSchulte,2009 *GuidoTack,2010 * *Lastmodified: *$Date:2011-05-2516:56:41+0200(Wed,25May2011)$by$Author:schulte$ *$Revision:12022$ * *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. * */ namespaceGecode{namespaceInt{namespaceCumulative{ template<classChar,classTraits> std::basic_ostream<Char,Traits>& operator<<(std::basic_ostream<Char,Traits>&os,constManFixPTaskBwd&t){ std::basic_ostringstream<Char,Traits>s; s.copyfmt(os);s.width(0); s<<t.est()<<":["<<t.pmin()<<','<<t.c()<<"]:"<<t.lct(); returnos<<s.str(); } template<classChar,classTraits> std::basic_ostream<Char,Traits>& operator<<(std::basic_ostream<Char,Traits>&os, constManFixPSETaskBwd&t){ std::basic_ostringstream<Char,Traits>s; s.copyfmt(os);s.width(0); s<<t.est()<<":["<<t.pmin()<<','<<t.c()<<"]:"<<t.lct(); returnos<<s.str(); } template<classChar,classTraits> std::basic_ostream<Char,Traits>& operator<<(std::basic_ostream<Char,Traits>&os,constOptFixPTaskBwd&t){ std::basic_ostringstream<Char,Traits>s; s.copyfmt(os);s.width(0); s<<t.est()<<":["<<t.pmin()<<','<<t.c()<<"]:"<<t.lct()<<':' <<(t.mandatory()?'1':(t.optional()?'?':'0')); returnos<<s.str(); } template<classChar,classTraits> std::basic_ostream<Char,Traits>& operator<<(std::basic_ostream<Char,Traits>&os, constOptFixPSETaskBwd&t){ std::basic_ostringstream<Char,Traits>s; s.copyfmt(os);s.width(0); s<<t.est()<<":["<<t.pmin()<<','<<t.c()<<"]:"<<t.lct()<<':' <<(t.mandatory()?'1':(t.optional()?'?':'0')); returnos<<s.str(); } }}} //STATISTICS:int-var