exception.hpp /usr/include/gecode/float.hh Gecode::Float::OutOfLimits Gecode::Float::VariableEmptyDomain Gecode::Float::TooFewArguments Gecode::Float::ArgumentSizeMismatch Gecode::Float::ArgumentSame Gecode::Float::UnknownRelation Gecode::Float::UnknownOperation Gecode::Float::IllegalOperation Gecode::Float::UnknownBranching Gecode::Float::ValOfUnassignedVar Gecode Gecode::Float /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> *VincentBarichard<Vincent.Barichard@univ-angers.fr> * *Copyright: *ChristianSchulte,2010 *VincentBarichard,2012 * *Lastmodified: *$Date:2013-01-2514:48:07+0100(Fri,25Jan2013)$by$Author:schulte$ *$Revision:13238$ * *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{namespaceFloat{ 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_EXPORTArgumentSame:publicException{ public: ArgumentSame(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); }; classGECODE_VTABLE_EXPORTUnknownBranching:publicException{ public: UnknownBranching(constchar*l); }; classGECODE_VTABLE_EXPORTValOfUnassignedVar:publicException{ public: ValOfUnassignedVar(constchar*l); }; /* *Classesforexceptionsraisedbyintegermodule * */ 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 ArgumentSame::ArgumentSame(constchar*l) :Exception(l,"Argumentarraycontainssamevariablemultiply"){} inline UnknownRelation::UnknownRelation(constchar*l) :Exception(l,"Unknownrelationtype"){} inline UnknownOperation::UnknownOperation(constchar*l) :Exception(l,"Unknownoperationtype"){} inline IllegalOperation::IllegalOperation(constchar*l) :Exception(l,"Illegaloperationtype"){} inline UnknownBranching::UnknownBranching(constchar*l) :Exception(l,"Unknownbranchingtype"){} inline ValOfUnassignedVar::ValOfUnassignedVar(constchar*l) :Exception(l,"Attempttoaccessvalueofunassignedvariable"){} }} //STATISTICS:float-other