Skip to content

Commit

Permalink
correct lemmas limit in the multi-check mode (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-irfan authored and disteph committed Jan 9, 2024
1 parent f0c57b4 commit 893861f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mcsat/bool/bool_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ void bool_plugin_event_notify(plugin_t* plugin, plugin_notify_kind_t kind) {
switch (kind) {
case MCSAT_SOLVER_START:
// Re-initialize the heuristics
bp->lemmas_limit = bp->heuristic_params.lemma_limit_init;
bp->lemmas_limit = bp->lemmas.size + bp->heuristic_params.lemma_limit_init;
break;
case MCSAT_SOLVER_RESTART:
// Check if clause compaction needed
Expand Down

0 comments on commit 893861f

Please sign in to comment.