OR-Tools  9.3
precedences.h File Reference

Go to the source code of this file.

Classes

class  PrecedencesPropagator
 
struct  PrecedencesPropagator::IntegerPrecedences
 

Namespaces

namespace  operations_research
 Collection of objects used to extend the Constraint Solver library.
 
namespace  operations_research::sat
 

Functions

std::function< void(Model *)> LowerOrEqual (IntegerVariable a, IntegerVariable b)
 
std::function< void(Model *)> LowerOrEqualWithOffset (IntegerVariable a, IntegerVariable b, int64_t offset)
 
std::function< void(Model *)> Sum2LowerOrEqual (IntegerVariable a, IntegerVariable b, int64_t ub)
 
std::function< void(Model *)> ConditionalSum2LowerOrEqual (IntegerVariable a, IntegerVariable b, int64_t ub, const std::vector< Literal > &enforcement_literals)
 
std::function< void(Model *)> Sum3LowerOrEqual (IntegerVariable a, IntegerVariable b, IntegerVariable c, int64_t ub)
 
std::function< void(Model *)> ConditionalSum3LowerOrEqual (IntegerVariable a, IntegerVariable b, IntegerVariable c, int64_t ub, const std::vector< Literal > &enforcement_literals)
 
std::function< void(Model *)> GreaterOrEqual (IntegerVariable a, IntegerVariable b)
 
std::function< void(Model *)> Equality (IntegerVariable a, IntegerVariable b)
 
std::function< void(Model *)> EqualityWithOffset (IntegerVariable a, IntegerVariable b, int64_t offset)
 
std::function< void(Model *)> ConditionalLowerOrEqualWithOffset (IntegerVariable a, IntegerVariable b, int64_t offset, Literal is_le)
 
std::function< void(Model *)> ConditionalLowerOrEqual (IntegerVariable a, IntegerVariable b, Literal is_le)
 
std::function< void(Model *)> ConditionalLowerOrEqual (IntegerVariable a, IntegerVariable b, absl::Span< const Literal > literals)
 
std::function< void(Model *)> ReifiedLowerOrEqualWithOffset (IntegerVariable a, IntegerVariable b, int64_t offset, Literal is_le)
 
std::function< void(Model *)> ReifiedEquality (IntegerVariable a, IntegerVariable b, Literal is_eq)
 
std::function< void(Model *)> ReifiedEqualityWithOffset (IntegerVariable a, IntegerVariable b, int64_t offset, Literal is_eq)
 
std::function< void(Model *)> NotEqual (IntegerVariable a, IntegerVariable b)