Skip to content

Commit

Permalink
Change wording from enabling to enabled for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerhard committed Nov 15, 2023
1 parent d5662c5 commit 245b438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/autoTune.ml
Original file line number Diff line number Diff line change
Expand Up @@ -467,11 +467,11 @@ let wideningOption factors file =
}

let activateTerminationAnalysis () =
print_endline "Enabling termination analysis";
enableAnalyses ["termination"; "apron"];
set_string "sem.int.signed_overflow" "assume_none";
set_string "ana.apron.domain" "polyhedra";
set_bool "ana.int.interval_threshold_widening" true
set_bool "ana.int.interval_threshold_widening" true;
print_endline "Enabled termination analysis"

let estimateComplexity factors file =
let pathsEstimate = factors.loops + factors.controlFlowStatements / 90 in
Expand Down

0 comments on commit 245b438

Please sign in to comment.