Skip to content

Commit

Permalink
kevm-pyk/utils: thread through option extra_module to run_prover
Browse files Browse the repository at this point in the history
  • Loading branch information
ehildenb committed Nov 12, 2024
1 parent ccee56b commit 2fe7317
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kevm-pyk/src/kevm_pyk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def run_prover(
task_id: TaskID | None = None,
maintenance_rate: int = 1,
assume_defined: bool = False,
extra_module: KFlatModule | None = None,
) -> bool:
prover: APRProver | ImpliesProver
try:
Expand All @@ -129,6 +130,7 @@ def create_prover() -> APRProver:
fast_check_subsumption=fast_check_subsumption,
direct_subproof_rules=direct_subproof_rules,
assume_defined=assume_defined,
extra_module=extra_module,
)

def update_status_bar(_proof: Proof) -> None:
Expand Down

0 comments on commit 2fe7317

Please sign in to comment.