
Test for absolute value constraint More...
Public Member Functions | |
| AbsXY (const std::string &s, const Gecode::IntSet &d, Gecode::IntConLevel icl) | |
| Create and register test. More... | |
| virtual bool | solution (const Assignment &x) const |
| Test whether x is solution More... | |
| virtual void | post (Gecode::Space &home, Gecode::IntVarArray &x) |
| Post constraint on x. More... | |
Public Member Functions inherited from Test::Int::Test | |
| Test (const std::string &p, const std::string &s, int a, const Gecode::IntSet &d, bool r=false, Gecode::IntConLevel i=Gecode::ICL_DEF) | |
| Constructor. More... | |
| Test (const std::string &s, int a, const Gecode::IntSet &d, bool r=false, Gecode::IntConLevel i=Gecode::ICL_DEF) | |
| Constructor. More... | |
| Test (const std::string &p, const std::string &s, int a, int min, int max, bool r=false, Gecode::IntConLevel i=Gecode::ICL_DEF) | |
| Constructor. More... | |
| Test (const std::string &s, int a, int min, int max, bool r=false, Gecode::IntConLevel i=Gecode::ICL_DEF) | |
| Constructor. More... | |
| virtual Assignment * | assignment (void) const |
| Create assignment. More... | |
| virtual bool | ignore (const Assignment &) const |
| Whether to ignore assignment for reification. More... | |
| virtual void | post (Gecode::Space &home, Gecode::IntVarArray &x, Gecode::Reify r) |
| Post reified constraint. More... | |
| virtual bool | run (void) |
| Perform test. More... | |
Public Member Functions inherited from Test::Base | |
| Base (const std::string &s) | |
| Create and register test with name s. More... | |
| const std::string & | name (void) const |
| Return name of test. More... | |
| Base * | next (void) const |
| Return next test. More... | |
| void | next (Base *n) |
| Set next test. More... | |
| virtual | ~Base (void) |
| Destructor. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from Test::Int::Test | |
| static std::string | str (Gecode::ExtensionalPropKind epk) |
| Map extensional propagation kind to string. More... | |
| static std::string | str (Gecode::IntConLevel icl) |
| Map integer consistency level to string. More... | |
| static std::string | str (Gecode::IntRelType irl) |
| Map integer relation to string. More... | |
| static std::string | str (Gecode::BoolOpType bot) |
| Map Boolean operation to string. More... | |
| static std::string | str (int i) |
| Map integer to string. More... | |
| static std::string | str (const Gecode::IntArgs &i) |
| Map integer array to string. More... | |
| template<class T > | |
| static bool | cmp (T x, Gecode::IntRelType r, T y) |
| Compare x and y with respect to r. More... | |
Static Public Member Functions inherited from Test::Base | |
| static void | sort (void) |
| Sort tests alphabetically. More... | |
| static Base * | tests (void) |
| Return all tests. More... | |
| static bool | fixpoint (void) |
| Throw a coin whether to compute a fixpoint. More... | |
Static Public Attributes inherited from Test::Base | |
| static Gecode::Support::RandomGenerator | rand = Gecode::Support::RandomGenerator() |
| Random number generator. More... | |
Protected Member Functions inherited from Test::Int::Test | |
| bool | eqv (void) const |
| Test whether equivalence as reification mode is supported. More... | |
| bool | imp (void) const |
| Test whether implication as reification mode is supported. More... | |
| bool | pmi (void) const |
| Test whether reverse implication as reification mode is supported. More... | |
Protected Attributes inherited from Test::Int::Test | |
| int | arity |
| Number of variables. More... | |
| Gecode::IntSet | dom |
| Domain of variables. More... | |
| bool | reified |
| Does the constraint also exist as reified constraint. More... | |
| int | rms |
| Which reification modes are supported. More... | |
| Gecode::IntConLevel | icl |
| Consistency level. More... | |
| ConTestLevel | contest |
| Whether to test for certain consistency. More... | |
| bool | testsearch |
| Whether to perform search test. More... | |
| bool | testfix |
| Whether to perform fixpoint test. More... | |
Related Functions inherited from Test::Base | |
| int | main (int argc, char *argv[]) |
| Main function. More... | |
Test for absolute value constraint
Definition at line 472 of file arithmetic.cpp.
|
inline |
Create and register test.
Definition at line 475 of file arithmetic.cpp.
|
inlinevirtual |
Test whether x is solution
Implements Test::Int::Test.
Definition at line 479 of file arithmetic.cpp.
|
inlinevirtual |