Skip to content

Commit

Permalink
Remove congruenceTuning (covered in goblint#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-schwarz committed Nov 18, 2022
1 parent 1f1fc50 commit ad207a8
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/autoTune.ml
Original file line number Diff line number Diff line change
Expand Up @@ -368,14 +368,6 @@ let wideningOption factors file =
print_endline "Enabled widening thresholds";
}

let congruenceOption factors file =
{
value = 8000;
cost = 8000;
activate = fun () ->
print_endline "Congruence enabled for whole file";
set_bool "ana.int.congruence" true;
}

let estimateComplexity factors file =
let pathsEstimate = factors.loops + factors.controlFlowStatements / 90 in
Expand Down Expand Up @@ -437,7 +429,6 @@ let chooseConfig file =
print_endline @@ "File: " ^ string_of_int fileCompplexity;

let options = [] in
let options = if isActivated "congruence" then (congruenceOption factors file)::options else options in
let options = if isActivated "octagon" then (apronOctagonOption factors file)::options else options in
let options = if isActivated "wideningThresholds" then (wideningOption factors file)::options else options in

Expand Down

0 comments on commit ad207a8

Please sign in to comment.