-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathboolean_problem_test.cc
186 lines (167 loc) · 6.3 KB
/
boolean_problem_test.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Copyright 2010-2025 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "ortools/sat/boolean_problem.h"
#include <memory>
#include <string>
#include <vector>
#include "absl/log/check.h"
#include "absl/status/status.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/string_view.h"
#include "gtest/gtest.h"
#include "ortools/algorithms/sparse_permutation.h"
#include "ortools/base/helpers.h"
#include "ortools/base/options.h"
#include "ortools/base/path.h"
#include "ortools/sat/boolean_problem.pb.h"
#include "ortools/sat/opb_reader.h"
namespace operations_research {
namespace sat {
namespace {
TEST(ValidateBooleanProblemTest, Ok) {
std::string file =
"min: 1 x1 1 x2 ;\n"
"1 x1 1 x2 >= 1 ;\n"
"1 x1 1 x2 >= 1 ;\n";
LinearBooleanProblem problem;
OpbReader reader;
const std::string filename = file::JoinPath(::testing::TempDir(), "file.opb");
CHECK_OK(file::SetContents(filename, file, file::Defaults()));
CHECK(reader.Load(filename, &problem));
EXPECT_TRUE(ValidateBooleanProblem(problem).ok());
}
TEST(ValidateBooleanProblemTest, ZeroCoefficients) {
std::string file =
"min: 1 x1 1 x2 ;\n"
"1 x1 0 x2 >= 1 ;\n"
"1 x1 1 x2 >= 1 ;\n";
LinearBooleanProblem problem;
OpbReader reader;
const std::string filename =
file::JoinPath(::testing::TempDir(), "file2.opb");
CHECK_OK(file::SetContents(filename, file, file::Defaults()));
CHECK(reader.Load(filename, &problem));
EXPECT_FALSE(ValidateBooleanProblem(problem).ok());
}
TEST(ValidateBooleanProblemTest, DuplicateEntries) {
std::string file =
"min: 1 x1 1 x2 ;\n"
"1 x1 1 x2 1 x1 >= 1 ;\n"
"1 x1 1 x2 >= 1 ;\n";
LinearBooleanProblem problem;
OpbReader reader;
const std::string filename =
file::JoinPath(::testing::TempDir(), "file3.opb");
CHECK_OK(file::SetContents(filename, file, file::Defaults()));
CHECK(reader.Load(filename, &problem));
EXPECT_FALSE(ValidateBooleanProblem(problem).ok());
}
void FindSymmetries(
absl::string_view file,
std::vector<std::unique_ptr<SparsePermutation>>* generators) {
LinearBooleanProblem problem;
OpbReader reader;
static int counter = 4;
++counter;
const std::string filename = file::JoinPath(
::testing::TempDir(), absl::StrCat("file", counter, ".opb"));
CHECK_OK(file::SetContents(filename, file, file::Defaults()));
CHECK(reader.Load(filename, &problem));
FindLinearBooleanProblemSymmetries(problem, generators);
}
TEST(FindLinearBooleanProblemSymmetriesTest, ProblemWithSymmetry1) {
std::string file =
"min: 1 x1 1 x2 ;\n"
"1 x1 1 x2 >= 1 ;\n"
"1 x1 1 x2 >= 1 ;\n";
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
// Note that the permutation is on the literals:
// xi maps to 2i and not(xi) maps to 2i + 1.
EXPECT_EQ(generators.size(), 1);
EXPECT_EQ(generators[0]->DebugString(), "(0 2) (1 3)");
}
TEST(FindLinearBooleanProblemSymmetriesTest, ProblemWithSymmetry2) {
std::string file =
"min: 1 x1 1 x2 ;\n"
"-3 x1 -2 x2 >= -1 ;\n"; // This is simplified to both x1 and x2 false.
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
EXPECT_EQ(generators.size(), 1);
EXPECT_EQ(generators[0]->DebugString(), "(0 2) (1 3)");
}
TEST(FindLinearBooleanProblemSymmetriesTest, ProblemWithSymmetry3) {
std::string file =
"min: 1 x1 1 x2 1 x3;\n"
" 1 x1 2 x2 3 x3 >= 2 ;\n"
" 1 x2 2 x3 3 x1 >= 2 ;\n"
" 1 x3 2 x1 3 x2 >= 2 ;\n";
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
EXPECT_EQ(generators.size(), 1);
EXPECT_EQ(generators[0]->DebugString(), "(0 4 2) (1 5 3)");
}
TEST(FindLinearBooleanProblemSymmetriesTest, ProblemWithSymmetry4) {
std::string file =
"min: 1 x1;\n"
" 1 x1 2 x2 >= 2 ;\n"
" 1 x1 -2 x3 >= 0 ;\n";
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
EXPECT_EQ(generators.size(), 1);
// x2 and not(x3) are equivalent.
EXPECT_EQ(generators[0]->DebugString(), "(2 5) (3 4)");
}
TEST(FindLinearBooleanProblemSymmetriesTest, ProblemWithoutSymmetry1) {
std::string file =
"min: 1 x1 2 x2 ;\n"
"1 x1 1 x2 >= 1 ;\n";
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
EXPECT_EQ(generators.size(), 0);
}
TEST(FindLinearBooleanProblemSymmetriesTest, ProblemWithoutSymmetry2) {
std::string file =
"min: 1 x1 1 x2 ;\n"
"1 x1 2 x2 >= 2 ;\n";
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
EXPECT_EQ(generators.size(), 0);
}
TEST(FindLinearBooleanProblemSymmetriesTest, PigeonHole) {
// This is the problem of putting 3 pigeons into 2 holes (UNSAT).
// x1: pigeon 1 is in hole 1
// x2: pigeon 1 is in hole 2
// x3: pigeon 2 is in hole 1
// ...
std::string file =
"min: ;\n"
"1 x1 1 x2 >= 1 ;\n" // pigeon 1 should go into one hole
"1 x3 1 x4 >= 1 ;\n" // pigeon 2 should go into one hole
"1 x5 1 x6 >= 1 ;\n" // pigeon 3 should go into one hole
"-1 x1 -1 x3 -1 x5 >= -1 ;\n" // At most 1 pigeon in hole 1
"-1 x2 -1 x4 -1 x6 >= -1 ;\n"; // At most 1 pigeon in hole 2
std::vector<std::unique_ptr<SparsePermutation>> generators;
FindSymmetries(file, &generators);
// The minimal support size is obtained with 3 generators:
// - The two holes are symmetric (x1, x2) (x3, x4) (x5, x6).
// - 2 generators for all the permutations of the 3 pigeons.
//
// But as of 2014-05, the symmetry finder isn't great at reducing the support
// size, but rather performs well at finding few generators, so it finds a
// solution with 2 generators.
EXPECT_EQ(generators.size(), 2);
}
} // namespace
} // namespace sat
} // namespace operations_research