|
| operations_research::sat::DEFINE_STRONG_INT64_TYPE (IntegerValue) |
|
constexpr IntegerValue | operations_research::sat::kMaxIntegerValue (std::numeric_limits< IntegerValue::ValueType >::max() - 1) |
|
constexpr IntegerValue | operations_research::sat::kMinIntegerValue (-kMaxIntegerValue.value()) |
|
double | operations_research::sat::ToDouble (IntegerValue value) |
|
template<class IntType> |
IntType | operations_research::sat::IntTypeAbs (IntType t) |
|
IntegerValue | operations_research::sat::CeilRatio (IntegerValue dividend, IntegerValue positive_divisor) |
|
IntegerValue | operations_research::sat::FloorRatio (IntegerValue dividend, IntegerValue positive_divisor) |
|
IntegerValue | operations_research::sat::CapProdI (IntegerValue a, IntegerValue b) |
| Overflows and saturated arithmetic.
|
|
IntegerValue | operations_research::sat::CapSubI (IntegerValue a, IntegerValue b) |
|
IntegerValue | operations_research::sat::CapAddI (IntegerValue a, IntegerValue b) |
|
bool | operations_research::sat::ProdOverflow (IntegerValue t, IntegerValue value) |
|
bool | operations_research::sat::AtMinOrMaxInt64I (IntegerValue t) |
|
IntegerValue | operations_research::sat::PositiveRemainder (IntegerValue dividend, IntegerValue positive_divisor) |
|
bool | operations_research::sat::AddTo (IntegerValue a, IntegerValue *result) |
|
bool | operations_research::sat::AddProductTo (IntegerValue a, IntegerValue b, IntegerValue *result) |
| Computes result += a * b, and return false iff there is an overflow.
|
|
bool | operations_research::sat::AddSquareTo (IntegerValue a, IntegerValue *result) |
| Computes result += a * a, and return false iff there is an overflow.
|
|
| operations_research::sat::DEFINE_STRONG_INDEX_TYPE (IntegerVariable) |
|
const IntegerVariable | operations_research::sat::kNoIntegerVariable (-1) |
|
IntegerVariable | operations_research::sat::NegationOf (IntegerVariable i) |
|
bool | operations_research::sat::VariableIsPositive (IntegerVariable i) |
|
IntegerVariable | operations_research::sat::PositiveVariable (IntegerVariable i) |
|
| operations_research::sat::DEFINE_STRONG_INDEX_TYPE (PositiveOnlyIndex) |
| Special type for storing only one thing for var and NegationOf(var).
|
|
PositiveOnlyIndex | operations_research::sat::GetPositiveOnlyIndex (IntegerVariable var) |
|
std::string | operations_research::sat::IntegerTermDebugString (IntegerVariable var, IntegerValue coeff) |
|
std::vector< IntegerVariable > | operations_research::sat::NegationOf (absl::Span< const IntegerVariable > vars) |
| Returns the vector of the negated variables.
|
|
std::ostream & | operations_research::sat::operator<< (std::ostream &os, IntegerLiteral i_lit) |
|
std::ostream & | operations_research::sat::operator<< (std::ostream &os, absl::Span< const IntegerLiteral > literals) |
|
template<typename H> |
H | operations_research::sat::AbslHashValue (H h, const AffineExpression &e) |
|
std::ostream & | operations_research::sat::operator<< (std::ostream &os, const ValueLiteralPair &p) |
|
| operations_research::sat::DEFINE_STRONG_INDEX_TYPE (IntervalVariable) |
|
const IntervalVariable | operations_research::sat::kNoIntervalVariable (-1) |
|