Skip to content

Commit 29a89d8

Browse files
authored
replace interim-simplification 50 by simplify-each 30 (#757)
The `--simplify-each` option only affects booster execution while `--interim-simplification` forces a fall-back to `kore` which is more expensive.
1 parent 4496200 commit 29a89d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kmir/src/kmir/kmir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def kcfg_explore(self, label: str | None = None) -> Iterator[KCFGExplore]:
8383
llvm_definition_dir=self.llvm_library_dir,
8484
bug_report=self.bug_report,
8585
id=label if self.bug_report is not None else None, # NB bug report arg.s must be coherent
86-
interim_simplification=50, # working around memory problems in LLVM backend calls
86+
simplify_each=30,
8787
) as cts:
8888
yield KCFGExplore(cts, kcfg_semantics=KMIRSemantics())
8989

0 commit comments

Comments
 (0)