exception.hpp /usr/include/gecode/kernel.hh Gecode::SpaceFailed Gecode::SpaceNotStable Gecode::SpaceNotCloned Gecode::SpaceNoBrancher Gecode::SpaceIllegalAlternative Gecode::TooManyBranchers Gecode::IllegalDecay Gecode::UninitializedAFC Gecode::UninitializedActivity Gecode::UninitializedRnd Gecode::AFCWrongArity Gecode::ActivityWrongArity Gecode /*-*-mode:C++;c-basic-offset:2;indent-tabs-mode:nil-*-*/ /* *Mainauthors: *ChristianSchulte<schulte@gecode.org> * *Copyright: *ChristianSchulte,2004 * *Lastmodified: *$Date:2013-05-0217:10:16+0200(Thu,02May2013)$by$Author:schulte$ *$Revision:13603$ * *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{ classGECODE_VTABLE_EXPORTSpaceFailed:publicException{ public: SpaceFailed(constchar*l); }; classGECODE_VTABLE_EXPORTSpaceNotStable:publicException{ public: SpaceNotStable(constchar*l); }; classGECODE_VTABLE_EXPORTSpaceNotCloned:publicException{ public: SpaceNotCloned(constchar*l); }; classGECODE_VTABLE_EXPORTSpaceNoBrancher:publicException{ public: SpaceNoBrancher(constchar*l); }; classGECODE_VTABLE_EXPORTSpaceIllegalAlternative:publicException{ public: SpaceIllegalAlternative(constchar*l); }; classGECODE_VTABLE_EXPORTTooManyBranchers:publicException{ public: TooManyBranchers(constchar*l); }; classGECODE_VTABLE_EXPORTIllegalDecay:publicException{ public: IllegalDecay(constchar*l); }; classGECODE_VTABLE_EXPORTUninitializedAFC:publicException{ public: UninitializedAFC(constchar*l); }; classGECODE_VTABLE_EXPORTUninitializedActivity:publicException{ public: UninitializedActivity(constchar*l); }; classGECODE_VTABLE_EXPORTUninitializedRnd:publicException{ public: UninitializedRnd(constchar*l); }; classGECODE_VTABLE_EXPORTAFCWrongArity:publicException{ public: AFCWrongArity(constchar*l); }; classGECODE_VTABLE_EXPORTActivityWrongArity:publicException{ public: ActivityWrongArity(constchar*l); }; /* *Classesforexceptionsraisedbykernel * */ inline SpaceFailed::SpaceFailed(constchar*l) :Exception(l,"Attempttoinvokeoperationonfailedspace"){} inline SpaceNotStable::SpaceNotStable(constchar*l) :Exception(l,"Attempttoinvokeoperationonnotstablespace"){} inline SpaceNotCloned::SpaceNotCloned(constchar*l) :Exception(l,"Copyconstructorofspacedidnotcallbaseclasscopyconstructor"){} inline SpaceNoBrancher::SpaceNoBrancher(constchar*l) :Exception(l,"Attempttocommitwithnobrancher"){} inline SpaceIllegalAlternative::SpaceIllegalAlternative(constchar*l) :Exception(l,"Attempttocommitwithillegalalternative"){} inline TooManyBranchers::TooManyBranchers(constchar*l) :Exception(l,"Toomanybrancherscreated"){} inline UninitializedRnd::UninitializedRnd(constchar*l) :Exception(l,"Uninitializedrandomgeneratorforbranching"){} inline IllegalDecay::IllegalDecay(constchar*l) :Exception(l,"Illegaldecayfactor"){} inline UninitializedAFC::UninitializedAFC(constchar*l) :Exception(l,"UninitializedAFCinformationforbranching"){} inline UninitializedActivity::UninitializedActivity(constchar*l) :Exception(l,"Uninitializedactivityinformationforbranching"){} inline AFCWrongArity::AFCWrongArity(constchar*l) :Exception(l,"AFChaswrongnumberofvariables"){} inline ActivityWrongArity::ActivityWrongArity(constchar*l) :Exception(l,"Activityhaswrongnumberofvariables"){} } //STATISTICS:kernel-other