forked from leanprover/lean4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: import LeanSAT's tactic frontends
Co-authored-by: Markus Himmel <[email protected]>
- Loading branch information
Showing
51 changed files
with
3,099 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/- | ||
Copyright (c) 2024 Lean FRO, LLC. All rights reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Henrik Böving | ||
-/ | ||
prelude | ||
import Lean.Elab.Tactic.BVDecide.Frontend.Attr | ||
import Lean.Elab.Tactic.BVDecide.Frontend.BVCheck | ||
import Lean.Elab.Tactic.BVDecide.Frontend.BVDecide | ||
import Lean.Elab.Tactic.BVDecide.Frontend.BVTrace | ||
import Lean.Elab.Tactic.BVDecide.Frontend.LRAT | ||
import Lean.Elab.Tactic.BVDecide.Frontend.Normalize | ||
|
||
/-! | ||
This module provides the tactic frontends, consisting of: | ||
- `bv_decide`, the bitblasting based `BitVec` decision procedure itself. | ||
- `bv_check`, like `bv_decide` but the LRAT proof is provided as a file so no need to call a SAT solver. | ||
- `bv_decide?`, converts `bv_decide?` into `bv_check` calls. | ||
-/ |
Oops, something went wrong.