Generated on Sat Jan 12 2019 20:58:51 for Gecode by doxygen 1.8.13

Enumerations

enum  Gecode::Int::RelTest { Gecode::Int::RT_FALSE = 0, Gecode::Int::RT_MAYBE = 1, Gecode::Int::RT_TRUE = 2 }
 Result of testing relation. More...
 

Functions

template<class VX , class VY >
RelTest Gecode::Int::rtest_eq_bnd (VX x, VY y)
 Test whether views x and y are equal (use bounds information) More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_eq_dom (VX x, VY y)
 Test whether views x and y are equal (use full domain information) More...
 
template<class VX >
RelTest Gecode::Int::rtest_eq_bnd (VX x, int n)
 Test whether view x and integer n are equal (use bounds information) More...
 
template<class VX >
RelTest Gecode::Int::rtest_eq_dom (VX x, int n)
 Test whether view x and integer n are equal (use full domain information) More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_nq_bnd (VX x, VY y)
 Test whether views x and y are different (use bounds information) More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_nq_dom (VX x, VY y)
 Test whether views x and y are different (use full domain information) More...
 
template<class VX >
RelTest Gecode::Int::rtest_nq_bnd (VX x, int n)
 Test whether view x and integer n are different (use bounds information) More...
 
template<class VX >
RelTest Gecode::Int::rtest_nq_dom (VX x, int n)
 Test whether view x and integer n are different (use full domain information) More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_lq (VX x, VY y)
 Test whether view x is less or equal than view y. More...
 
template<class VX >
RelTest Gecode::Int::rtest_lq (VX x, int n)
 Test whether view x is less or equal than integer n. More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_le (VX x, VY y)
 Test whether view x is less than view y. More...
 
template<class VX >
RelTest Gecode::Int::rtest_le (VX x, int n)
 Test whether view x is less than integer n. More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_gq (VX x, VY y)
 Test whether view x is greater or equal than view y. More...
 
template<class VX >
RelTest Gecode::Int::rtest_gq (VX x, int n)
 Test whether view x is greater or equal than integer n. More...
 
template<class VX , class VY >
RelTest Gecode::Int::rtest_gr (VX x, VY y)
 Test whether view x is greater than view y. More...
 
template<class VX >
RelTest Gecode::Int::rtest_gr (VX x, int n)
 Test whether view x is greater than integer n. More...
 

Detailed Description

Enumeration Type Documentation

◆ RelTest

Result of testing relation.

Enumerator
RT_FALSE 

Relation does not hold.

RT_MAYBE 

Relation may hold or not.

RT_TRUE 

Relation does hold.

Definition at line 1701 of file view.hpp.

Function Documentation

◆ rtest_eq_bnd() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_eq_bnd ( VX  x,
VY  y 
)
inline

Test whether views x and y are equal (use bounds information)

Definition at line 43 of file rel-test.hpp.

◆ rtest_eq_dom() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_eq_dom ( VX  x,
VY  y 
)
inline

Test whether views x and y are equal (use full domain information)

Definition at line 65 of file rel-test.hpp.

◆ rtest_eq_bnd() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_eq_bnd ( VX  x,
int  n 
)
inline

Test whether view x and integer n are equal (use bounds information)

Definition at line 74 of file rel-test.hpp.

◆ rtest_eq_dom() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_eq_dom ( VX  x,
int  n 
)
inline

Test whether view x and integer n are equal (use full domain information)

Definition at line 89 of file rel-test.hpp.

◆ rtest_nq_bnd() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_nq_bnd ( VX  x,
VY  y 
)
inline

Test whether views x and y are different (use bounds information)

Definition at line 104 of file rel-test.hpp.

◆ rtest_nq_dom() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_nq_dom ( VX  x,
VY  y 
)
inline

Test whether views x and y are different (use full domain information)

Definition at line 126 of file rel-test.hpp.

◆ rtest_nq_bnd() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_nq_bnd ( VX  x,
int  n 
)
inline

Test whether view x and integer n are different (use bounds information)

Definition at line 135 of file rel-test.hpp.

◆ rtest_nq_dom() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_nq_dom ( VX  x,
int  n 
)
inline

Test whether view x and integer n are different (use full domain information)

Definition at line 150 of file rel-test.hpp.

◆ rtest_lq() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_lq ( VX  x,
VY  y 
)
inline

Test whether view x is less or equal than view y.

Definition at line 164 of file rel-test.hpp.

◆ rtest_lq() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_lq ( VX  x,
int  n 
)
inline

Test whether view x is less or equal than integer n.

Definition at line 172 of file rel-test.hpp.

◆ rtest_le() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_le ( VX  x,
VY  y 
)
inline

Test whether view x is less than view y.

Definition at line 180 of file rel-test.hpp.

◆ rtest_le() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_le ( VX  x,
int  n 
)
inline

Test whether view x is less than integer n.

Definition at line 188 of file rel-test.hpp.

◆ rtest_gq() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_gq ( VX  x,
VY  y 
)
inline

Test whether view x is greater or equal than view y.

Definition at line 196 of file rel-test.hpp.

◆ rtest_gq() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_gq ( VX  x,
int  n 
)
inline

Test whether view x is greater or equal than integer n.

Definition at line 204 of file rel-test.hpp.

◆ rtest_gr() [1/2]

template<class VX , class VY >
RelTest Gecode::Int::rtest_gr ( VX  x,
VY  y 
)
inline

Test whether view x is greater than view y.

Definition at line 212 of file rel-test.hpp.

◆ rtest_gr() [2/2]

template<class VX >
RelTest Gecode::Int::rtest_gr ( VX  x,
int  n 
)
inline

Test whether view x is greater than integer n.

Definition at line 220 of file rel-test.hpp.