aboutsummaryrefslogtreecommitdiffstats
path: root/src/versions/standard/Tactics_standard.v
Commit message (Collapse)AuthorAgeFilesLines
* prop2bool_hyps insensitive to parenthesisChantal Keller2021-04-281-1/+1
|
* CompDec are automatically discharged when generated by the OCaml tactic, ↵Chantal Keller2021-04-261-14/+17
| | | | when possible
* Take hypotheses from the local context (#91)ckeller2021-04-261-12/+115
| | | | | * The tactics sets veritXXX and smtXXX now automatically take hypotheses from the local context * `prop2bool_hyps` also apply to hypotheses not in the local context * Second strategy for vauto (still incomplete)
* Convert hypotheses from Prop to bool (#89)ckeller2021-04-211-27/+13
| | | | | | | * This PR converts hypotheses given to the tactics verit, verit_no_check, smt and smt_no_check from Prop to bool when needed. * Some current limitations are detailed in src/PropToBool.v. * Partially enhances #30 .
* Link equality on uninterpreted sorts with SMT equality (#86)ckeller2021-02-231-6/+6
| | | | | Equality is now treated from uninterpreted sorts, which makes them usable with tactics! Closes #17 Closes #78
* Error message to state that tactics are not supported with native-coq (#47)ckeller2019-04-121-0/+65
* Better error message for failing tactics with native-coq