Skip to content

Commit

Permalink
chore: move back to default arguments for bv_automat_circuit (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasgrosser committed Dec 14, 2024
1 parent 5f52c5e commit c80433b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SSA/Projects/InstCombine/TacticAuto.lean
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ macro "bv_bench": tactic =>
"bv_normalize" : (bv_normalize; done),
"bv_decide" : (bv_decide; done),
"bv_auto" : (bv_auto; done),
"bv_automata_circuit" : (bv_automata_circuit (config := { circuitSizeThreshold := 30 } ); done),
"bv_normalize_automata_circuit" : ((try (solve | bv_normalize)); (try bv_automata_circuit (config := { circuitSizeThreshold := 30 } )); done)
"bv_automata_circuit" : (bv_automata_circuit; done),
"bv_normalize_automata_circuit" : ((try (solve | bv_normalize)); (try bv_automata_circuit); done)
]
try bv_auto
try sorry
Expand Down

0 comments on commit c80433b

Please sign in to comment.