![]() |
Google OR-Tools v9.15
a fast and portable software suite for combinatorial optimization
|
#include "ortools/linear_solver/proto_solver/scip_proto_solver.h"#include <algorithm>#include <cmath>#include <cstdint>#include <cstdlib>#include <limits>#include <numeric>#include <optional>#include <string>#include <vector>#include "absl/base/attributes.h"#include "absl/cleanup/cleanup.h"#include "absl/container/btree_set.h"#include "absl/flags/flag.h"#include "absl/log/check.h"#include "absl/log/log.h"#include "absl/status/status.h"#include "absl/status/statusor.h"#include "absl/strings/str_cat.h"#include "absl/strings/str_format.h"#include "absl/strings/string_view.h"#include "absl/time/clock.h"#include "absl/time/time.h"#include "ortools/base/timer.h"#include "scip/cons_and.h"#include "scip/cons_disjunction.h"#include "scip/cons_indicator.h"#include "scip/cons_linear.h"#include "scip/cons_or.h"#include "scip/cons_quadratic.h"#include "ortools/base/status_macros.h"#include "ortools/linear_solver/linear_solver.pb.h"#include "ortools/linear_solver/model_validator.h"#include "ortools/linear_solver/proto_solver/scip_params.h"#include "ortools/linear_solver/scip_helper_macros.h"#include "ortools/util/lazy_mutable_copy.h"#include "scip/cons_sos1.h"#include "scip/cons_sos2.h"#include "scip/def.h"#include "scip/pub_var.h"#include "scip/scip_cons.h"#include "scip/scip_general.h"#include "scip/scip_message.h"#include "scip/scip_numerics.h"#include "scip/scip_param.h"#include "scip/scip_prob.h"#include "scip/scip_sol.h"#include "scip/scip_solve.h"#include "scip/scip_solvingstats.h"#include "scip/scip_var.h"#include "scip/scipdefplugins.h"#include "scip/type_clock.h"#include "scip/type_cons.h"#include "scip/type_prob.h"#include "scip/type_scip.h"#include "scip/type_sol.h"#include "scip/type_stat.h"#include "scip/type_var.h"Go to the source code of this file.
Namespaces | |
| namespace | operations_research |
| OR-Tools root namespace. | |
Functions | |
| ABSL_FLAG (std::string, scip_proto_solver_output_cip_file, "", "If given, saves the generated CIP file here. Useful for " "reporting bugs to SCIP.") | |
| std::string | operations_research::FindErrorInMPModelForScip (const MPModelProto &model, SCIP *scip) |
| absl::StatusOr< MPSolutionResponse > | operations_research::ScipSolveProto (LazyMutableCopy< MPModelRequest > request) |