Skip to content

Commit

Permalink
Fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpreiner committed Sep 25, 2024
1 parent 97a46fd commit 3bd569e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/prop/cadical.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ void CadicalSolver::initialize(context::Context* context,
d_proxy = theoryProxy;
d_propagator.reset(new CadicalPropagator(theoryProxy, context, *d_solver));
d_solver->connect_external_propagator(d_propagator.get());
if (d_env.getOptions().base.pluginNotifySatClauseInSolve)
if (!d_env.getPlugins().empty())
{
d_clause_learner.reset(new ClauseLearner(*theoryProxy, 0));
d_solver->connect_learner(d_clause_learner.get());
Expand Down

0 comments on commit 3bd569e

Please sign in to comment.