![]() |
Google OR-Tools v9.12
a fast and portable software suite for combinatorial optimization
|
#include <functional>
#include <vector>
#include "absl/types/span.h"
#include "ortools/sat/integer_base.h"
#include "ortools/sat/intervals.h"
#include "ortools/sat/model.h"
Go to the source code of this file.
Namespaces | |
namespace | operations_research |
In SWIG mode, we don't want anything besides these top-level includes. | |
namespace | operations_research::sat |
Functions | |
std::function< void(Model *)> | operations_research::sat::Cumulative (const std::vector< IntervalVariable > &vars, absl::Span< const AffineExpression > demands, AffineExpression capacity, SchedulingConstraintHelper *helper) |
std::function< void(Model *)> | operations_research::sat::CumulativeTimeDecomposition (absl::Span< const IntervalVariable > vars, absl::Span< const AffineExpression > demands, AffineExpression capacity, SchedulingConstraintHelper *helper) |
std::function< void(Model *)> | operations_research::sat::CumulativeUsingReservoir (absl::Span< const IntervalVariable > vars, absl::Span< const AffineExpression > demands, AffineExpression capacity, SchedulingConstraintHelper *helper=nullptr) |
Another testing code, same assumptions as the CumulativeTimeDecomposition(). | |