Skip to content

Commit

Permalink
Fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
TDacik committed Jan 13, 2025
2 parents 241a792 + f5b986a commit 8b2f5dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/solver/debug.ml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ let inductive_pred ?(suffix="") name phi =

let input input =
debug_out "input.txt" (ParserContext.show input);
formula ~force_name:"input" (ParserContext.get_phi input)
formula ~force_name:"input" (ParserContext.get_phi input);
SL.output_benchmark ((debug_dir ()) ^ "/input.smt2") (ParserContext.get_phi input) ~status:`Unknown

let context context =
SL.output_benchmark ((debug_dir ()) ^ "/input.smt2") context.phi ~status:`Unknown;
SL_graph.output_file (sl_graph_dot "") context.sl_graph;
SL_graph.output_file (sl_graph_dot "_spatial") (SL_graph.spatial_projection context.sl_graph)

Expand Down
1 change: 1 addition & 0 deletions src/solver/solver.ml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ let solve solver phi =
let input = Input.add_assertion input phi in
Input.add_vars input vars
in
Debug.input input;
let result = Engine.solve input in
Profiler.finish ();
Debug.result result;
Expand Down

0 comments on commit 8b2f5dc

Please sign in to comment.