Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ impl ConflictResolver for ResolutionResolver {
.add_term(learned_nogood.predicates.len() as u64);

self.add_learned_nogood(context, learned_nogood, inference_code);

context.solver_state.declare_solving();
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,8 @@ impl ConstraintSatisfactionSolver {

self.conflict_resolver
.resolve_conflict(&mut conflict_analysis_context);

self.state.declare_solving();
}

/// Performs a restart during the search process; it is only called when it has been determined
Expand Down