Go to the source code of this file.
|
| operations_research |
| The vehicle routing library lets one model and solve generic vehicle routing problems ranging from the Traveling Salesman Problem to more complex problems such as the Capacitated Vehicle Routing Problem with Time Windows.
|
|
| operations_research::sat |
|
|
void | AddTableConstraint (absl::Span< const IntegerVariable > vars, std::vector< std::vector< int64 >> tuples, Model *model) |
|
void | AddNegatedTableConstraint (absl::Span< const IntegerVariable > vars, std::vector< std::vector< int64 >> tuples, Model *model) |
|
std::function< void(Model *)> | LiteralTableConstraint (const std::vector< std::vector< Literal >> &literal_tuples, const std::vector< Literal > &line_literals) |
|
std::function< void(Model *)> | TransitionConstraint (const std::vector< IntegerVariable > &vars, const std::vector< std::vector< int64 >> &automaton, int64 initial_state, const std::vector< int64 > &final_states) |
|