forked from google/or-tools
-
Notifications
You must be signed in to change notification settings - Fork 9
/
boolean_problem.cc
897 lines (829 loc) · 35.7 KB
/
boolean_problem.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
// Copyright 2010-2024 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 <algorithm>
#include <cstdint>
#include <cstdlib>
#include <limits>
#include <memory>
#include <numeric>
#include <string>
#include <utility>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/flags/flag.h"
#include "absl/log/check.h"
#include "absl/meta/type_traits.h"
#include "absl/status/status.h"
#include "absl/strings/str_format.h"
#include "absl/strings/string_view.h"
#include "ortools/base/logging.h"
#include "ortools/graph/graph.h"
#if !defined(__PORTABLE_PLATFORM__)
#include "ortools/graph/graph_io.h"
#endif // __PORTABLE_PLATFORM__
#include "ortools/algorithms/find_graph_symmetries.h"
#include "ortools/algorithms/sparse_permutation.h"
#include "ortools/base/strong_vector.h"
#include "ortools/graph/util.h"
#include "ortools/port/proto_utils.h"
#include "ortools/sat/boolean_problem.pb.h"
#include "ortools/sat/cp_model.pb.h"
#include "ortools/sat/pb_constraint.h"
#include "ortools/sat/sat_base.h"
#include "ortools/sat/sat_parameters.pb.h"
#include "ortools/sat/sat_solver.h"
#include "ortools/sat/simplification.h"
#include "ortools/util/strong_integers.h"
ABSL_FLAG(std::string, debug_dump_symmetry_graph_to_file, "",
"If this flag is non-empty, an undirected graph whose"
" automorphism group is in one-to-one correspondence with the"
" symmetries of the SAT problem will be dumped to a file every"
" time FindLinearBooleanProblemSymmetries() is called.");
namespace operations_research {
namespace sat {
using util::RemapGraph;
void ExtractAssignment(const LinearBooleanProblem& problem,
const SatSolver& solver, std::vector<bool>* assignment) {
assignment->clear();
for (int i = 0; i < problem.num_variables(); ++i) {
assignment->push_back(
solver.Assignment().LiteralIsTrue(Literal(BooleanVariable(i), true)));
}
}
namespace {
// Used by BooleanProblemIsValid() to test that there is no duplicate literals,
// that they are all within range and that there is no zero coefficient.
//
// A non-empty string indicates an error.
template <typename LinearTerms>
std::string ValidateLinearTerms(const LinearTerms& terms,
std::vector<bool>* variable_seen) {
// variable_seen already has all items false and is reset before return.
std::string err_str;
int num_errs = 0;
const int max_num_errs = 100;
for (int i = 0; i < terms.literals_size(); ++i) {
if (terms.literals(i) == 0) {
if (++num_errs <= max_num_errs) {
err_str += absl::StrFormat("Zero literal at position %d\n", i);
}
}
if (terms.coefficients(i) == 0) {
if (++num_errs <= max_num_errs) {
err_str += absl::StrFormat("Literal %d has a zero coefficient\n",
terms.literals(i));
}
}
const int var = Literal(terms.literals(i)).Variable().value();
if (var >= variable_seen->size()) {
if (++num_errs <= max_num_errs) {
err_str += absl::StrFormat("Out of bound variable %d\n", var);
}
}
if ((*variable_seen)[var]) {
if (++num_errs <= max_num_errs) {
err_str += absl::StrFormat("Duplicated variable %d\n", var);
}
}
(*variable_seen)[var] = true;
}
for (int i = 0; i < terms.literals_size(); ++i) {
const int var = Literal(terms.literals(i)).Variable().value();
(*variable_seen)[var] = false;
}
if (num_errs) {
if (num_errs <= max_num_errs) {
err_str = absl::StrFormat("%d validation errors:\n", num_errs) + err_str;
} else {
err_str =
absl::StrFormat("%d validation errors; here are the first %d:\n",
num_errs, max_num_errs) +
err_str;
}
}
return err_str;
}
// Converts a linear expression from the protocol buffer format to a vector
// of LiteralWithCoeff.
template <typename ProtoFormat>
std::vector<LiteralWithCoeff> ConvertLinearExpression(
const ProtoFormat& input) {
std::vector<LiteralWithCoeff> cst;
cst.reserve(input.literals_size());
for (int i = 0; i < input.literals_size(); ++i) {
const Literal literal(input.literals(i));
cst.push_back(LiteralWithCoeff(literal, input.coefficients(i)));
}
return cst;
}
} // namespace
absl::Status ValidateBooleanProblem(const LinearBooleanProblem& problem) {
std::vector<bool> variable_seen(problem.num_variables(), false);
for (int i = 0; i < problem.constraints_size(); ++i) {
const LinearBooleanConstraint& constraint = problem.constraints(i);
const std::string error = ValidateLinearTerms(constraint, &variable_seen);
if (!error.empty()) {
return absl::Status(
absl::StatusCode::kInvalidArgument,
absl::StrFormat("Invalid constraint %i: ", i) + error);
}
}
const std::string error =
ValidateLinearTerms(problem.objective(), &variable_seen);
if (!error.empty()) {
return absl::Status(absl::StatusCode::kInvalidArgument,
absl::StrFormat("Invalid objective: ") + error);
}
return ::absl::OkStatus();
}
CpModelProto BooleanProblemToCpModelproto(const LinearBooleanProblem& problem) {
CpModelProto result;
for (int i = 0; i < problem.num_variables(); ++i) {
IntegerVariableProto* var = result.add_variables();
if (problem.var_names_size() > i) {
var->set_name(problem.var_names(i));
}
var->add_domain(0);
var->add_domain(1);
}
for (const LinearBooleanConstraint& constraint : problem.constraints()) {
ConstraintProto* ct = result.add_constraints();
ct->set_name(constraint.name());
LinearConstraintProto* linear = ct->mutable_linear();
int64_t offset = 0;
for (int i = 0; i < constraint.literals_size(); ++i) {
// Note that the new format is slightly different.
const int lit = constraint.literals(i);
const int64_t coeff = constraint.coefficients(i);
if (lit > 0) {
linear->add_vars(lit - 1);
linear->add_coeffs(coeff);
} else {
// The term was coeff * (1 - var).
linear->add_vars(-lit - 1);
linear->add_coeffs(-coeff);
offset -= coeff;
}
}
linear->add_domain(constraint.has_lower_bound()
? constraint.lower_bound() + offset
: std::numeric_limits<int32_t>::min() + offset);
linear->add_domain(constraint.has_upper_bound()
? constraint.upper_bound() + offset
: std::numeric_limits<int32_t>::max() + offset);
}
if (problem.has_objective()) {
CpObjectiveProto* objective = result.mutable_objective();
int64_t offset = 0;
for (int i = 0; i < problem.objective().literals_size(); ++i) {
const int lit = problem.objective().literals(i);
const int64_t coeff = problem.objective().coefficients(i);
if (lit > 0) {
objective->add_vars(lit - 1);
objective->add_coeffs(coeff);
} else {
objective->add_vars(-lit - 1);
objective->add_coeffs(-coeff);
offset -= coeff;
}
}
objective->set_offset(offset + problem.objective().offset());
objective->set_scaling_factor(problem.objective().scaling_factor());
}
return result;
}
void ChangeOptimizationDirection(LinearBooleanProblem* problem) {
LinearObjective* objective = problem->mutable_objective();
objective->set_scaling_factor(-objective->scaling_factor());
objective->set_offset(-objective->offset());
// We need 'auto' here to keep the open-source compilation happy
// (it uses the public protobuf release).
for (auto& coefficients_ref : *objective->mutable_coefficients()) {
coefficients_ref = -coefficients_ref;
}
}
bool LoadBooleanProblem(const LinearBooleanProblem& problem,
SatSolver* solver) {
// TODO(user): Currently, the sat solver can load without any issue
// constraints with duplicate variables, so we just output a warning if the
// problem is not "valid". Make this a strong check once we have some
// preprocessing step to remove duplicates variable in the constraints.
const absl::Status status = ValidateBooleanProblem(problem);
if (!status.ok()) {
LOG(WARNING) << "The given problem is invalid!";
}
if (solver->parameters().log_search_progress()) {
LOG(INFO) << "Loading problem '" << problem.name() << "', "
<< problem.num_variables() << " variables, "
<< problem.constraints_size() << " constraints.";
}
solver->SetNumVariables(problem.num_variables());
std::vector<LiteralWithCoeff> cst;
int64_t num_terms = 0;
int num_constraints = 0;
for (const LinearBooleanConstraint& constraint : problem.constraints()) {
num_terms += constraint.literals_size();
cst = ConvertLinearExpression(constraint);
if (!solver->AddLinearConstraint(
constraint.has_lower_bound(), Coefficient(constraint.lower_bound()),
constraint.has_upper_bound(), Coefficient(constraint.upper_bound()),
&cst)) {
LOG(INFO) << "Problem detected to be UNSAT when "
<< "adding the constraint #" << num_constraints
<< " with name '" << constraint.name() << "'";
return false;
}
++num_constraints;
}
if (solver->parameters().log_search_progress()) {
LOG(INFO) << "The problem contains " << num_terms << " terms.";
}
return true;
}
bool LoadAndConsumeBooleanProblem(LinearBooleanProblem* problem,
SatSolver* solver) {
const absl::Status status = ValidateBooleanProblem(*problem);
if (!status.ok()) {
LOG(WARNING) << "The given problem is invalid! " << status.message();
}
if (solver->parameters().log_search_progress()) {
#if !defined(__PORTABLE_PLATFORM__)
LOG(INFO) << "LinearBooleanProblem memory: " << problem->SpaceUsedLong();
#endif
LOG(INFO) << "Loading problem '" << problem->name() << "', "
<< problem->num_variables() << " variables, "
<< problem->constraints_size() << " constraints.";
}
solver->SetNumVariables(problem->num_variables());
std::vector<LiteralWithCoeff> cst;
int64_t num_terms = 0;
int num_constraints = 0;
// We will process the constraints backward so we can free the memory used by
// each constraint just after processing it. Because of that, we initially
// reverse all the constraints to add them in the same order.
std::reverse(problem->mutable_constraints()->begin(),
problem->mutable_constraints()->end());
for (int i = problem->constraints_size() - 1; i >= 0; --i) {
const LinearBooleanConstraint& constraint = problem->constraints(i);
num_terms += constraint.literals_size();
cst = ConvertLinearExpression(constraint);
if (!solver->AddLinearConstraint(
constraint.has_lower_bound(), Coefficient(constraint.lower_bound()),
constraint.has_upper_bound(), Coefficient(constraint.upper_bound()),
&cst)) {
LOG(INFO) << "Problem detected to be UNSAT when "
<< "adding the constraint #" << num_constraints
<< " with name '" << constraint.name() << "'";
return false;
}
delete problem->mutable_constraints()->ReleaseLast();
++num_constraints;
}
LinearBooleanProblem empty_problem;
problem->mutable_constraints()->Swap(empty_problem.mutable_constraints());
if (solver->parameters().log_search_progress()) {
LOG(INFO) << "The problem contains " << num_terms << " terms.";
}
return true;
}
void UseObjectiveForSatAssignmentPreference(const LinearBooleanProblem& problem,
SatSolver* solver) {
const LinearObjective& objective = problem.objective();
CHECK_EQ(objective.literals_size(), objective.coefficients_size());
int64_t max_abs_weight = 0;
for (const int64_t coefficient : objective.coefficients()) {
max_abs_weight = std::max(max_abs_weight, std::abs(coefficient));
}
const double max_abs_weight_double = max_abs_weight;
for (int i = 0; i < objective.literals_size(); ++i) {
const Literal literal(objective.literals(i));
const int64_t coefficient = objective.coefficients(i);
const double abs_weight = std::abs(coefficient) / max_abs_weight_double;
// Because this is a minimization problem, we prefer to assign a Boolean
// variable to its "low" objective value. So if a literal has a positive
// weight when true, we want to set it to false.
solver->SetAssignmentPreference(
coefficient > 0 ? literal.Negated() : literal, abs_weight);
}
}
bool AddObjectiveUpperBound(const LinearBooleanProblem& problem,
Coefficient upper_bound, SatSolver* solver) {
std::vector<LiteralWithCoeff> cst =
ConvertLinearExpression(problem.objective());
return solver->AddLinearConstraint(false, Coefficient(0), true, upper_bound,
&cst);
}
bool AddObjectiveConstraint(const LinearBooleanProblem& problem,
bool use_lower_bound, Coefficient lower_bound,
bool use_upper_bound, Coefficient upper_bound,
SatSolver* solver) {
std::vector<LiteralWithCoeff> cst =
ConvertLinearExpression(problem.objective());
return solver->AddLinearConstraint(use_lower_bound, lower_bound,
use_upper_bound, upper_bound, &cst);
}
Coefficient ComputeObjectiveValue(const LinearBooleanProblem& problem,
const std::vector<bool>& assignment) {
CHECK_EQ(assignment.size(), problem.num_variables());
Coefficient sum(0);
const LinearObjective& objective = problem.objective();
for (int i = 0; i < objective.literals_size(); ++i) {
const Literal literal(objective.literals(i));
if (assignment[literal.Variable().value()] == literal.IsPositive()) {
sum += objective.coefficients(i);
}
}
return sum;
}
bool IsAssignmentValid(const LinearBooleanProblem& problem,
const std::vector<bool>& assignment) {
CHECK_EQ(assignment.size(), problem.num_variables());
// Check that all constraints are satisfied.
for (const LinearBooleanConstraint& constraint : problem.constraints()) {
Coefficient sum(0);
for (int i = 0; i < constraint.literals_size(); ++i) {
const Literal literal(constraint.literals(i));
if (assignment[literal.Variable().value()] == literal.IsPositive()) {
sum += constraint.coefficients(i);
}
}
if (constraint.has_lower_bound() && sum < constraint.lower_bound()) {
LOG(WARNING) << "Unsatisfied constraint! sum: " << sum << "\n"
<< ProtobufDebugString(constraint);
return false;
}
if (constraint.has_upper_bound() && sum > constraint.upper_bound()) {
LOG(WARNING) << "Unsatisfied constraint! sum: " << sum << "\n"
<< ProtobufDebugString(constraint);
return false;
}
}
return true;
}
// Note(user): This function makes a few assumptions about the format of the
// given LinearBooleanProblem. All constraint coefficients must be 1 (and of the
// form >= 1) and all objective weights must be strictly positive.
std::string LinearBooleanProblemToCnfString(
const LinearBooleanProblem& problem) {
std::string output;
const bool is_wcnf = (problem.objective().coefficients_size() > 0);
const LinearObjective& objective = problem.objective();
// Hack: We know that all the variables with index greater than this have been
// created "artificially" in order to encode a max-sat problem into our
// format. Each extra variable appear only once, and was used as a slack to
// reify a soft clause.
const int first_slack_variable = problem.original_num_variables();
// This will contains the objective.
absl::flat_hash_map<int, int64_t> literal_to_weight;
std::vector<std::pair<int, int64_t>> non_slack_objective;
// This will be the weight of the "hard" clauses in the wcnf format. It must
// be greater than the sum of the weight of all the soft clauses, so we will
// just set it to this sum + 1.
int64_t hard_weight = 1;
if (is_wcnf) {
int i = 0;
for (int64_t weight : objective.coefficients()) {
CHECK_NE(weight, 0);
int signed_literal = objective.literals(i);
// There is no direct support for an objective offset in the wcnf format.
// So this is not a perfect translation of the objective. It is however
// possible to achieve the same effect by adding a new variable x, and two
// soft clauses: x with weight offset, and -x with weight offset.
//
// TODO(user): implement this trick.
if (weight < 0) {
signed_literal = -signed_literal;
weight = -weight;
}
literal_to_weight[objective.literals(i)] = weight;
if (Literal(signed_literal).Variable() < first_slack_variable) {
non_slack_objective.push_back(std::make_pair(signed_literal, weight));
}
hard_weight += weight;
++i;
}
output += absl::StrFormat("p wcnf %d %d %d\n", first_slack_variable,
static_cast<int>(problem.constraints_size() +
non_slack_objective.size()),
hard_weight);
} else {
output += absl::StrFormat("p cnf %d %d\n", problem.num_variables(),
problem.constraints_size());
}
std::string constraint_output;
for (const LinearBooleanConstraint& constraint : problem.constraints()) {
if (constraint.literals_size() == 0) return ""; // Assumption.
constraint_output.clear();
int64_t weight = hard_weight;
for (int i = 0; i < constraint.literals_size(); ++i) {
if (constraint.coefficients(i) != 1) return ""; // Assumption.
if (is_wcnf && abs(constraint.literals(i)) - 1 >= first_slack_variable) {
weight = literal_to_weight[constraint.literals(i)];
} else {
if (i > 0) constraint_output += " ";
constraint_output += Literal(constraint.literals(i)).DebugString();
}
}
if (is_wcnf) {
output += absl::StrFormat("%d ", weight);
}
output += constraint_output + " 0\n";
}
// Output the rest of the objective as singleton constraints.
if (is_wcnf) {
for (std::pair<int, int64_t> p : non_slack_objective) {
// Since it is falsifying this clause that cost "weigtht", we need to take
// its negation.
const Literal literal(-p.first);
output += absl::StrFormat("%d %s 0\n", p.second, literal.DebugString());
}
}
return output;
}
void StoreAssignment(const VariablesAssignment& assignment,
BooleanAssignment* output) {
output->clear_literals();
for (BooleanVariable var(0); var < assignment.NumberOfVariables(); ++var) {
if (assignment.VariableIsAssigned(var)) {
output->add_literals(
assignment.GetTrueLiteralForAssignedVariable(var).SignedValue());
}
}
}
void ExtractSubproblem(const LinearBooleanProblem& problem,
const std::vector<int>& constraint_indices,
LinearBooleanProblem* subproblem) {
*subproblem = problem;
subproblem->set_name("Subproblem of " + problem.name());
subproblem->clear_constraints();
for (int index : constraint_indices) {
CHECK_LT(index, problem.constraints_size());
subproblem->add_constraints()->MergeFrom(problem.constraints(index));
}
}
namespace {
// A simple class to generate equivalence class number for
// GenerateGraphForSymmetryDetection().
class IdGenerator {
public:
IdGenerator() = default;
// If the pair (type, coefficient) was never seen before, then generate
// a new id, otherwise return the previously generated id.
int GetId(int type, Coefficient coefficient) {
const std::pair<int, int64_t> key(type, coefficient.value());
return id_map_.emplace(key, id_map_.size()).first->second;
}
private:
absl::flat_hash_map<std::pair<int, int64_t>, int> id_map_;
};
} // namespace.
// Returns a graph whose automorphisms can be mapped back to the symmetries of
// the given LinearBooleanProblem.
//
// Any permutation of the graph that respects the initial_equivalence_classes
// output can be mapped to a symmetry of the given problem simply by taking its
// restriction on the first 2 * num_variables nodes and interpreting its index
// as a literal index. In a sense, a node with a low enough index #i is in
// one-to-one correspondence with a literals #i (using the index representation
// of literal).
//
// The format of the initial_equivalence_classes is the same as the one
// described in GraphSymmetryFinder::FindSymmetries(). The classes must be dense
// in [0, num_classes) and any symmetry will only map nodes with the same class
// between each other.
template <typename Graph>
Graph* GenerateGraphForSymmetryDetection(
const LinearBooleanProblem& problem,
std::vector<int>* initial_equivalence_classes) {
// First, we convert the problem to its canonical representation.
const int num_variables = problem.num_variables();
CanonicalBooleanLinearProblem canonical_problem;
std::vector<LiteralWithCoeff> cst;
for (const LinearBooleanConstraint& constraint : problem.constraints()) {
cst = ConvertLinearExpression(constraint);
CHECK(canonical_problem.AddLinearConstraint(
constraint.has_lower_bound(), Coefficient(constraint.lower_bound()),
constraint.has_upper_bound(), Coefficient(constraint.upper_bound()),
&cst));
}
// TODO(user): reserve the memory for the graph? not sure it is worthwhile
// since it would require some linear scan of the problem though.
Graph* graph = new Graph();
initial_equivalence_classes->clear();
// We will construct a graph with 3 different types of node that must be
// in different equivalent classes.
enum NodeType { LITERAL_NODE, CONSTRAINT_NODE, CONSTRAINT_COEFFICIENT_NODE };
IdGenerator id_generator;
// First, we need one node per literal with an edge between each literal
// and its negation.
for (int i = 0; i < num_variables; ++i) {
// We have two nodes for each variable.
// Note that the indices are in [0, 2 * num_variables) and in one to one
// correspondence with the index representation of a literal.
const Literal literal = Literal(BooleanVariable(i), true);
graph->AddArc(literal.Index().value(), literal.NegatedIndex().value());
graph->AddArc(literal.NegatedIndex().value(), literal.Index().value());
}
// We use 0 for their initial equivalence class, but that may be modified
// with the objective coefficient (see below).
initial_equivalence_classes->assign(
2 * num_variables,
id_generator.GetId(NodeType::LITERAL_NODE, Coefficient(0)));
// Literals with different objective coeffs shouldn't be in the same class.
//
// We need to canonicalize the objective to regroup literals corresponding
// to the same variables. Note that we don't care about the offset or
// optimization direction here, we just care about literals with the same
// canonical coefficient.
Coefficient shift;
Coefficient max_value;
std::vector<LiteralWithCoeff> expr =
ConvertLinearExpression(problem.objective());
ComputeBooleanLinearExpressionCanonicalForm(&expr, &shift, &max_value);
for (LiteralWithCoeff term : expr) {
(*initial_equivalence_classes)[term.literal.Index().value()] =
id_generator.GetId(NodeType::LITERAL_NODE, term.coefficient);
}
// Then, for each constraint, we will have one or more nodes.
for (int i = 0; i < canonical_problem.NumConstraints(); ++i) {
// First we have a node for the constraint with an equivalence class
// depending on the rhs.
//
// Note: Since we add nodes one by one, initial_equivalence_classes->size()
// gives the number of nodes at any point, which we use as next node index.
const int constraint_node_index = initial_equivalence_classes->size();
initial_equivalence_classes->push_back(id_generator.GetId(
NodeType::CONSTRAINT_NODE, canonical_problem.Rhs(i)));
// This node will also be connected to all literals of the constraint
// with a coefficient of 1. Literals with new coefficients will be grouped
// under a new node connected to the constraint_node_index.
//
// Note that this works because a canonical constraint is sorted by
// increasing coefficient value (all positive).
int current_node_index = constraint_node_index;
Coefficient previous_coefficient(1);
for (LiteralWithCoeff term : canonical_problem.Constraint(i)) {
if (term.coefficient != previous_coefficient) {
current_node_index = initial_equivalence_classes->size();
initial_equivalence_classes->push_back(id_generator.GetId(
NodeType::CONSTRAINT_COEFFICIENT_NODE, term.coefficient));
previous_coefficient = term.coefficient;
// Connect this node to the constraint node. Note that we don't
// technically need the arcs in both directions, but that may help a bit
// the algorithm to find symmetries.
graph->AddArc(constraint_node_index, current_node_index);
graph->AddArc(current_node_index, constraint_node_index);
}
// Connect this node to the associated term.literal node. Note that we
// don't technically need the arcs in both directions, but that may help a
// bit the algorithm to find symmetries.
graph->AddArc(current_node_index, term.literal.Index().value());
graph->AddArc(term.literal.Index().value(), current_node_index);
}
}
graph->Build();
DCHECK_EQ(graph->num_nodes(), initial_equivalence_classes->size());
return graph;
}
void MakeAllLiteralsPositive(LinearBooleanProblem* problem) {
// Objective.
LinearObjective* mutable_objective = problem->mutable_objective();
int64_t objective_offset = 0;
for (int i = 0; i < mutable_objective->literals_size(); ++i) {
const int signed_literal = mutable_objective->literals(i);
if (signed_literal < 0) {
const int64_t coefficient = mutable_objective->coefficients(i);
mutable_objective->set_literals(i, -signed_literal);
mutable_objective->set_coefficients(i, -coefficient);
objective_offset += coefficient;
}
}
mutable_objective->set_offset(mutable_objective->offset() + objective_offset);
// Constraints.
for (LinearBooleanConstraint& constraint :
*(problem->mutable_constraints())) {
int64_t sum = 0;
for (int i = 0; i < constraint.literals_size(); ++i) {
if (constraint.literals(i) < 0) {
sum += constraint.coefficients(i);
constraint.set_literals(i, -constraint.literals(i));
constraint.set_coefficients(i, -constraint.coefficients(i));
}
}
if (constraint.has_lower_bound()) {
constraint.set_lower_bound(constraint.lower_bound() - sum);
}
if (constraint.has_upper_bound()) {
constraint.set_upper_bound(constraint.upper_bound() - sum);
}
}
}
void FindLinearBooleanProblemSymmetries(
const LinearBooleanProblem& problem,
std::vector<std::unique_ptr<SparsePermutation>>* generators) {
typedef GraphSymmetryFinder::Graph Graph;
std::vector<int> equivalence_classes;
std::unique_ptr<Graph> graph(
GenerateGraphForSymmetryDetection<Graph>(problem, &equivalence_classes));
LOG(INFO) << "Graph has " << graph->num_nodes() << " nodes and "
<< graph->num_arcs() / 2 << " edges.";
#if !defined(__PORTABLE_PLATFORM__)
if (!absl::GetFlag(FLAGS_debug_dump_symmetry_graph_to_file).empty()) {
// Remap the graph nodes to sort them by equivalence classes.
std::vector<int> new_node_index(graph->num_nodes(), -1);
const int num_classes = 1 + *std::max_element(equivalence_classes.begin(),
equivalence_classes.end());
std::vector<int> class_size(num_classes, 0);
for (const int c : equivalence_classes) ++class_size[c];
std::vector<int> next_index_by_class(num_classes, 0);
std::partial_sum(class_size.begin(), class_size.end() - 1,
next_index_by_class.begin() + 1);
for (int node = 0; node < graph->num_nodes(); ++node) {
new_node_index[node] = next_index_by_class[equivalence_classes[node]]++;
}
std::unique_ptr<Graph> remapped_graph = RemapGraph(*graph, new_node_index);
const absl::Status status = util::WriteGraphToFile(
*remapped_graph, absl::GetFlag(FLAGS_debug_dump_symmetry_graph_to_file),
/*directed=*/false, class_size);
if (!status.ok()) {
LOG(DFATAL) << "Error when writing the symmetry graph to file: "
<< status;
}
}
#endif // __PORTABLE_PLATFORM__
GraphSymmetryFinder symmetry_finder(*graph,
/*is_undirected=*/true);
std::vector<int> factorized_automorphism_group_size;
// TODO(user): inject the appropriate time limit here.
CHECK_OK(symmetry_finder.FindSymmetries(&equivalence_classes, generators,
&factorized_automorphism_group_size));
// Remove from the permutations the part not concerning the literals.
// Note that some permutation may becomes empty, which means that we had
// duplicates constraints. TODO(user): Remove them beforehand?
double average_support_size = 0.0;
int num_generators = 0;
for (int i = 0; i < generators->size(); ++i) {
SparsePermutation* permutation = (*generators)[i].get();
std::vector<int> to_delete;
for (int j = 0; j < permutation->NumCycles(); ++j) {
if (*(permutation->Cycle(j).begin()) >= 2 * problem.num_variables()) {
to_delete.push_back(j);
if (DEBUG_MODE) {
// Verify that the cycle's entire support does not touch any variable.
for (const int node : permutation->Cycle(j)) {
DCHECK_GE(node, 2 * problem.num_variables());
}
}
}
}
permutation->RemoveCycles(to_delete);
if (!permutation->Support().empty()) {
average_support_size += permutation->Support().size();
swap((*generators)[num_generators], (*generators)[i]);
++num_generators;
}
}
generators->resize(num_generators);
average_support_size /= num_generators;
LOG(INFO) << "# of generators: " << num_generators;
LOG(INFO) << "Average support size: " << average_support_size;
}
void ApplyLiteralMappingToBooleanProblem(
const util_intops::StrongVector<LiteralIndex, LiteralIndex>& mapping,
LinearBooleanProblem* problem) {
Coefficient bound_shift;
Coefficient max_value;
std::vector<LiteralWithCoeff> cst;
// First the objective.
cst = ConvertLinearExpression(problem->objective());
ApplyLiteralMapping(mapping, &cst, &bound_shift, &max_value);
LinearObjective* mutable_objective = problem->mutable_objective();
mutable_objective->clear_literals();
mutable_objective->clear_coefficients();
mutable_objective->set_offset(mutable_objective->offset() -
bound_shift.value());
for (const LiteralWithCoeff& entry : cst) {
mutable_objective->add_literals(entry.literal.SignedValue());
mutable_objective->add_coefficients(entry.coefficient.value());
}
// Now the clauses.
for (LinearBooleanConstraint& constraint : *problem->mutable_constraints()) {
cst = ConvertLinearExpression(constraint);
constraint.clear_literals();
constraint.clear_coefficients();
ApplyLiteralMapping(mapping, &cst, &bound_shift, &max_value);
// Add bound_shift to the bounds and remove a bound if it is now trivial.
if (constraint.has_upper_bound()) {
constraint.set_upper_bound(constraint.upper_bound() +
bound_shift.value());
if (max_value <= constraint.upper_bound()) {
constraint.clear_upper_bound();
}
}
if (constraint.has_lower_bound()) {
constraint.set_lower_bound(constraint.lower_bound() +
bound_shift.value());
// This is because ApplyLiteralMapping make all coefficient positive.
if (constraint.lower_bound() <= 0) {
constraint.clear_lower_bound();
}
}
// If the constraint is always true, we just leave it empty.
if (constraint.has_lower_bound() || constraint.has_upper_bound()) {
for (const LiteralWithCoeff& entry : cst) {
constraint.add_literals(entry.literal.SignedValue());
constraint.add_coefficients(entry.coefficient.value());
}
}
}
// Remove empty constraints.
int new_index = 0;
const int num_constraints = problem->constraints_size();
for (int i = 0; i < num_constraints; ++i) {
if (!(problem->constraints(i).literals_size() == 0)) {
problem->mutable_constraints()->SwapElements(i, new_index);
++new_index;
}
}
problem->mutable_constraints()->DeleteSubrange(new_index,
num_constraints - new_index);
// Computes the new number of variables and set it.
int num_vars = 0;
for (LiteralIndex index : mapping) {
if (index >= 0) {
num_vars = std::max(num_vars, Literal(index).Variable().value() + 1);
}
}
problem->set_num_variables(num_vars);
// TODO(user): The names is currently all scrambled. Do something about it
// so that non-fixed variables keep their names.
problem->mutable_var_names()->DeleteSubrange(
num_vars, problem->var_names_size() - num_vars);
}
// A simple preprocessing step that does basic probing and removes the
// equivalent literals.
void ProbeAndSimplifyProblem(SatPostsolver* postsolver,
LinearBooleanProblem* problem) {
// TODO(user): expose the number of iterations as a parameter.
for (int iter = 0; iter < 6; ++iter) {
SatSolver solver;
if (!LoadBooleanProblem(*problem, &solver)) {
LOG(INFO) << "UNSAT when loading the problem.";
}
util_intops::StrongVector<LiteralIndex, LiteralIndex> equiv_map;
ProbeAndFindEquivalentLiteral(&solver, postsolver, /*drat_writer=*/nullptr,
&equiv_map);
// We can abort if no information is learned.
if (equiv_map.empty() && solver.LiteralTrail().Index() == 0) break;
if (equiv_map.empty()) {
const int num_literals = 2 * solver.NumVariables();
for (LiteralIndex index(0); index < num_literals; ++index) {
equiv_map.push_back(index);
}
}
// Fix fixed variables in the equivalence map and in the postsolver.
solver.Backtrack(0);
for (int i = 0; i < solver.LiteralTrail().Index(); ++i) {
const Literal l = solver.LiteralTrail()[i];
equiv_map[l.Index()] = kTrueLiteralIndex;
equiv_map[l.NegatedIndex()] = kFalseLiteralIndex;
postsolver->FixVariable(l);
}
// Remap the variables into a dense set. All the variables for which the
// equiv_map is not the identity are no longer needed.
BooleanVariable new_var(0);
util_intops::StrongVector<BooleanVariable, BooleanVariable> var_map;
for (BooleanVariable var(0); var < solver.NumVariables(); ++var) {
if (equiv_map[Literal(var, true).Index()] == Literal(var, true).Index()) {
var_map.push_back(new_var);
++new_var;
} else {
var_map.push_back(BooleanVariable(-1));
}
}
// Apply the variable mapping.
postsolver->ApplyMapping(var_map);
for (LiteralIndex index(0); index < equiv_map.size(); ++index) {
if (equiv_map[index] >= 0) {
const Literal l(equiv_map[index]);
const BooleanVariable image = var_map[l.Variable()];
CHECK_NE(image, BooleanVariable(-1));
equiv_map[index] = Literal(image, l.IsPositive()).Index();
}
}
ApplyLiteralMappingToBooleanProblem(equiv_map, problem);
}
}
} // namespace sat
} // namespace operations_research