minor sync

This commit is contained in:
Laurent Perron
2022-04-08 11:01:13 +02:00
parent 06bee0db52
commit 74d5a10f50
3 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,6 @@
#include <utility>
#include <vector>
#include "absl/container/btree_map.h"
#include "absl/container/flat_hash_map.h"
#include "absl/meta/type_traits.h"
#include "absl/strings/str_cat.h"

View File

@@ -105,6 +105,8 @@ class SatSolver {
// Adds a clause to the problem. Returns false if the problem is detected to
// be UNSAT.
// If is_safe is false, we will do some basic presolving like removing
// duplicate literals.
//
// TODO(user): Rename this to AddClause(), also get rid of the specialized
// AddUnitClause(), AddBinaryClause() and AddTernaryClause() since they

View File

@@ -21,7 +21,6 @@
#include <utility>
#include <vector>
#include "absl/container/btree_set.h"
#include "absl/memory/memory.h"
#include "absl/types/span.h"
#include "ortools/algorithms/dynamic_partition.h"