Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions SSA/Projects/InstCombine/TacticAuto.lean
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import Std.Tactic.BVDecide
import Leanwuzla

import SSA.Projects.InstCombine.Tactic.SimpLLVM
import Blase.SingleWidth.Tactic
import Blase.Fast.MBA
import TacBench
import SSA.Core.Tactic.ExtractGoals

Expand Down Expand Up @@ -116,7 +114,7 @@ macro "bv_auto": tactic =>
| bv_distrib
| bv_ring
| bv_of_bool
| bool_to_prop; bv_automata_classic
/- | bool_to_prop; bv_automata_classic -/
| bv_decide
)
)
Expand Down Expand Up @@ -171,11 +169,11 @@ macro "bv_bench_automata": tactic =>
tac_bench (config := { outputType := .csv }) [
-- "bv_normalize" : (bv_normalize; done),
-- "presburger" : (bv_automata_gen (config := { backend := .presburger }); done),
"normPresburger" : ((try (solve | bv_normalize)); (try bv_automata_gen (config := { backend := .presburger })); done),
/- "normPresburger" : ((try (solve | bv_normalize)); (try bv_automata_gen (config := { backend := .presburger })); done), -/
-- "circuitUnverified" : (bv_automata_gen (config := { backend := .circuit_cadical_unverified /- maxIter -/ 4 }); done),
-- "circuitVerified" : (bv_automata_gen (config := { backend := .circuit_cadical_verified /- maxIter -/ 4 }); done),
-- "normCircuitUnverified" : ((try (solve | bv_normalize)); (try bv_automata_gen (config := { backend := .circuit_cadical_unverified /- maxIter -/ 4 })); done),
"normCircuitVerified" : ((try (solve | bv_normalize)); (try bv_automata_gen (config := { backend := .circuit_cadical_verified /- maxIter -/ 4 })); done),
/- "normCircuitVerified" : ((try (solve | bv_normalize)); (try bv_automata_gen (config := { backend := .circuit_cadical_verified /1- maxIter -1/ 4 })); done), -/
-- "no_uninterpreted" : (bv_automata_fragment_no_uninterpreted),
-- "width_ok" : (bv_automata_fragment_width_legal),
-- "reflect_ok" : (bv_automata_fragment_reflect),
Expand Down
5 changes: 0 additions & 5 deletions lakefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ name = "TacBench"
path = "TacBench"
rev = "main"

[[require]]
name = "Blase"
path = "Blase"
rev = "main"

[[require]]
name = "mathlib"
git = "https://github.com/leanprover-community/mathlib4-nightly-testing"
Expand Down
Loading