remove map_util from most of the code; absl::make_unique and absl::optional -> stl version

This commit is contained in:
Laurent Perron
2022-03-07 11:31:58 +01:00
committed by Mizux Seiha
parent 1b1cbc4fa5
commit c82cfdc9ad
64 changed files with 166 additions and 223 deletions

View File

@@ -14,6 +14,8 @@
#ifndef OR_TOOLS_PACKING_ARC_FLOW_SOLVER_H_
#define OR_TOOLS_PACKING_ARC_FLOW_SOLVER_H_
#include <string>
#include "ortools/linear_solver/linear_solver.h"
#include "ortools/packing/vector_bin_packing.pb.h"

View File

@@ -13,6 +13,8 @@
#include "ortools/packing/binpacking_2d_parser.h"
#include <string>
#include "absl/strings/numbers.h"
#include "absl/strings/str_split.h"
#include "ortools/base/logging.h"

View File

@@ -14,6 +14,7 @@
#include "ortools/packing/vector_bin_packing_parser.h"
#include <cstdint>
#include <string>
#include "absl/strings/numbers.h"
#include "absl/strings/str_split.h"