Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Shikhar-Srivastava-16 committed Dec 17, 2024
1 parent b0066d6 commit c7cf943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/conjure_core/src/solver/adaptors/rustsat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub fn instantiate_model_from_conjure(
Ok(inst)
}

fn solve(&mut solver_inst: Minisat, model_inst: SatInstance) -> bool {
fn solve(solver_inst: &mut Minisat, model_inst: SatInstance) -> bool {

let cnf_func: rustsat::instances::Cnf = model_inst.clone().into_cnf().0;
solver_inst.add_cnf(cnf_func);
Expand Down

0 comments on commit c7cf943

Please sign in to comment.