Google OR-Tools v9.11
a fast and portable software suite for combinatorial optimization
|
#include "ortools/sat/2d_rectangle_presolve.h"
#include <algorithm>
#include <limits>
#include <memory>
#include <optional>
#include <utility>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/log/check.h"
#include "absl/strings/str_cat.h"
#include "absl/types/span.h"
#include "ortools/base/logging.h"
#include "ortools/sat/diffn_util.h"
#include "ortools/sat/integer.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 | |
bool | operations_research::sat::PresolveFixed2dRectangles (absl::Span< const RectangleInRange > non_fixed_boxes, std::vector< Rectangle > *fixed_boxes) |
bool | operations_research::sat::ReduceNumberofBoxes (std::vector< Rectangle > *mandatory_rectangles, std::vector< Rectangle > *optional_rectangles) |
IntegerValue size |
Definition at line 235 of file 2d_rectangle_presolve.cc.
IntegerValue x_start |
Definition at line 233 of file 2d_rectangle_presolve.cc.
IntegerValue y_start |
Definition at line 234 of file 2d_rectangle_presolve.cc.