![]() |
Google OR-Tools v9.14
a fast and portable software suite for combinatorial optimization
|
#include "ortools/math_opt/solvers/highs_solver.h"#include <algorithm>#include <cmath>#include <cstdint>#include <cstdlib>#include <limits>#include <memory>#include <optional>#include <string>#include <utility>#include <vector>#include "Highs.h"#include "absl/algorithm/container.h"#include "absl/cleanup/cleanup.h"#include "absl/container/flat_hash_map.h"#include "absl/log/check.h"#include "absl/memory/memory.h"#include "absl/status/status.h"#include "absl/status/statusor.h"#include "absl/strings/string_view.h"#include "absl/time/clock.h"#include "absl/time/time.h"#include "io/HighsIO.h"#include "lp_data/HConst.h"#include "lp_data/HStruct.h"#include "lp_data/HighsInfo.h"#include "lp_data/HighsLp.h"#include "lp_data/HighsModelUtils.h"#include "lp_data/HighsOptions.h"#include "lp_data/HighsStatus.h"#include "model/HighsModel.h"#include "ortools/base/protoutil.h"#include "ortools/base/status_builder.h"#include "ortools/base/status_macros.h"#include "ortools/math_opt/core/empty_bounds.h"#include "ortools/math_opt/core/inverted_bounds.h"#include "ortools/math_opt/core/math_opt_proto_utils.h"#include "ortools/math_opt/core/solver_interface.h"#include "ortools/math_opt/core/sorted.h"#include "ortools/math_opt/core/sparse_vector_view.h"#include "ortools/math_opt/parameters.pb.h"#include "ortools/math_opt/result.pb.h"#include "ortools/math_opt/solution.pb.h"#include "ortools/math_opt/solvers/highs.pb.h"#include "ortools/math_opt/solvers/message_callback_data.h"#include "ortools/util/solve_interrupter.h"#include "ortools/util/status_macros.h"#include "simplex/SimplexConst.h"#include "util/HighsInt.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::math_opt |
| An object oriented wrapper for quadratic constraints in ModelStorage. | |
Functions | |
| operations_research::math_opt::MATH_OPT_REGISTER_SOLVER (SOLVER_TYPE_HIGHS, HighsSolver::New) | |