exception.hpp /usr/include/gecode/set.hh Gecode::Set::OutOfLimits Gecode::Set::VariableEmptyDomain Gecode::Set::TooFewArguments Gecode::Set::ArgumentSizeMismatch Gecode::Set::UnknownBranching Gecode::Set::UnknownRelation Gecode::Set::UnknownOperation Gecode::Set::IllegalOperation Gecode Gecode::Set /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *GuidoTack<tack@gecode.org> * *Copyright: *ChristianSchulte,2004,2005 *GuidoTack,2005 * *Lastmodified: *$Date:2009-07-2016:05:21+0200(Mon,20Jul2009)$by$Author:tack$ *$Revision:9380$ * *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{namespaceSet{ classGECODE_VTABLE_EXPORTOutOfLimits:publicException{ public: OutOfLimits(constchar*l); }; classGECODE_VTABLE_EXPORTVariableEmptyDomain:publicException{ public: VariableEmptyDomain(constchar*l); }; classGECODE_VTABLE_EXPORTTooFewArguments:publicException{ public: TooFewArguments(constchar*l); }; classGECODE_VTABLE_EXPORTArgumentSizeMismatch:publicException{ public: ArgumentSizeMismatch(constchar*l); }; classGECODE_VTABLE_EXPORTUnknownBranching:publicException{ public: UnknownBranching(constchar*l); }; classGECODE_VTABLE_EXPORTUnknownRelation:publicException{ public: UnknownRelation(constchar*l); }; classGECODE_VTABLE_EXPORTUnknownOperation:publicException{ public: UnknownOperation(constchar*l); }; classGECODE_VTABLE_EXPORTIllegalOperation:publicException{ public: IllegalOperation(constchar*l); }; inline OutOfLimits::OutOfLimits(constchar*l) :Exception(l,"Numberoutoflimits"){} inline VariableEmptyDomain::VariableEmptyDomain(constchar*l) :Exception(l,"Attempttocreatevariablewithemptydomain"){} inline TooFewArguments::TooFewArguments(constchar*l) :Exception(l,"Passedargumentarrayhastoofewelements"){} inline ArgumentSizeMismatch::ArgumentSizeMismatch(constchar*l) :Exception(l,"Sizesofargumentarraysmismatch"){} inline IllegalOperation::IllegalOperation(constchar*l) :Exception(l,"Illegaloperationtype"){} inline UnknownBranching::UnknownBranching(constchar*l) :Exception(l,"Unknownbranchingtype"){} inline UnknownRelation::UnknownRelation(constchar*l) :Exception(l,"Unknownrelationtype"){} inline UnknownOperation::UnknownOperation(constchar*l) :Exception(l,"Unknownoperationtype"){} }} //STATISTICS:set-other