rename internal sat method; more tests

This commit is contained in:
Laurent Perron
2025-04-03 16:12:45 +02:00
parent d7fe4ae48f
commit c06d62f0cb
23 changed files with 16294 additions and 90 deletions

View File

@@ -820,7 +820,7 @@ void SatPresolver::RemoveAndRegisterForPostsolve(ClauseIndex ci, Literal x) {
}
Literal SatPresolver::FindLiteralWithShortestOccurrenceList(
const std::vector<Literal>& clause) {
absl::Span<const Literal> clause) {
DCHECK(!clause.empty());
Literal result = clause.front();
int best_size = literal_to_clause_sizes_[result];