![]() |
Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
|
#include <cstdint>#include <functional>#include <vector>#include "absl/container/flat_hash_set.h"#include "absl/types/span.h"#include "ortools/sat/cp_model.pb.h"#include "ortools/sat/presolve_context.h"#include "ortools/sat/sat_parameters.pb.h"#include "ortools/util/sorted_interval_list.h"Go to the source code of this file.
Classes | |
| class | operations_research::sat::ModelCopy |
Namespaces | |
| namespace | operations_research |
| In SWIG mode, we don't want anything besides these top-level includes. | |
| namespace | operations_research::sat |
Functions | |
| bool | operations_research::sat::ImportModelWithBasicPresolveIntoContext (const CpModelProto &in_model, PresolveContext *context) |
| bool | operations_research::sat::ImportModelAndDomainsWithBasicPresolveIntoContext (const CpModelProto &in_model, absl::Span< const Domain > domains, std::function< bool(int)> active_constraints, PresolveContext *context, std::vector< int > *interval_mapping) |
| void | operations_research::sat::CopyEverythingExceptVariablesAndConstraintsFieldsIntoContext (const CpModelProto &in_model, PresolveContext *context) |
| Copies the non constraint, non variables part of the model. | |