Skip to content

Commit 4b9490b

Browse files
Natasha Yogananda Jeppudanielsn
Natasha Yogananda Jeppu
authored andcommitted
Add utility to collect clauses and display the clause set in json output for write-solver-stats-to
Clauses are stored as a sorted vector of integers. clang format solver_hardness.cpp
1 parent 2d0c2e9 commit 4b9490b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solvers/solver_hardness.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ operator+=(const solver_hardnesst::sat_hardnesst &other)
2626
clauses += other.clauses;
2727
literals += other.literals;
2828
variables.insert(other.variables.begin(), other.variables.end());
29-
clause_set.insert(clause_set.end(),
30-
other.clause_set.begin(), other.clause_set.end());
29+
clause_set.insert(
30+
clause_set.end(), other.clause_set.begin(), other.clause_set.end());
3131
return *this;
3232
}
3333

0 commit comments

Comments
 (0)