aboutsummaryrefslogtreecommitdiffstats
path: root/src/trace
Commit message (Collapse)AuthorAgeFilesLines
* Clean-upChantal Keller2022-04-142-0/+2
|
* Merge remote-tracking branch 'origin/coq-8.10' into coq-8.11Chantal Keller2022-02-1724-44/+46
|\
| * Merge remote-tracking branch 'origin/master' into coq-8.10Chantal Keller2022-02-1724-24/+24
| |\
| | * Update copyrightChantal Keller2022-02-1622-22/+22
| | |
| * | Add debugging information for uninterpreted functionsChantal Keller2022-02-166-20/+22
| | |
* | | Merge remote-tracking branch 'origin/coq-8.10' into coq-8.11Chantal Keller2022-02-1510-561/+694
|\| |
| * | Use the Register mechanism (#104)ckeller2022-02-1510-561/+694
| | |
* | | Merge remote-tracking branch 'origin/coq-8.10' into coq-8.11Chantal Keller2021-12-073-5/+4
|\| |
| * | Merge remote-tracking branch 'origin/master' into coq-8.10Chantal Keller2021-12-073-5/+4
| |\|
| | * Solved bug in delayed ComDecChantal Keller2021-12-073-5/+4
| | |
* | | Merge remote-tracking branch 'origin/coq-8.10' into coq-8.11Chantal Keller2021-10-141-1/+1
|\| |
| * | Merge remote-tracking branch 'origin/master' into coq-8.10Chantal Keller2021-10-141-1/+1
| |\|
| | * Small optimChantal Keller2021-10-141-1/+1
| | |
* | | Merge remote-tracking branch 'coq-8.10' into coq-8.11vblot2021-09-081-9/+12
|\| |
| * | Merge remote-tracking branch 'smtcoq/master' into coq-8.10vblot2021-09-081-9/+12
| |\|
| | * generalize polymorphic arguments detectionvblot2021-09-081-9/+12
| | |
* | | Merge remote-tracking branch 'remotes/origin/coq-8.10' into coq-8.11Chantal Keller2021-08-301-1/+1
|\| |
| * | Rename directory because MacOS FS is case-insensitiveChantal Keller2021-08-301-1/+1
| | |
* | | Merge remote-tracking branch 'remotes/origin/coq-8.10' into coq-8.11Chantal Keller2021-07-074-23/+9
|\| |
| * | use native integers (#96)vblot2021-07-074-23/+9
| | |
* | | Merge branch 'coq-8.10' of github.com:smtcoq/smtcoq into coq-8.11Chantal Keller2021-05-2820-659/+1007
|\| |
| * | getting rid of native-coq (#95)vblot2021-05-2820-659/+1018
|/ /
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-05-2622-22/+22
|\|
| * Update copyrightChantal Keller2021-05-2622-22/+22
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-05-051-1/+1
|\|
| * CompDec on interpreted typeChantal Keller2021-05-051-1/+1
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-05-052-2/+8
|\|
| * Reify applied polymorphic terms with compdecChantal Keller2021-05-052-2/+8
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-04-283-4/+18
|\|
| * Solve a bug when reifying under a binderChantal Keller2021-04-283-4/+18
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-04-261-1/+3
|\|
| * Take hypotheses from the local context (#91)ckeller2021-04-261-1/+3
| | | | | | | | | | * 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)
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-04-211-15/+15
|\|
| * Solve a bound variable capture problem in the reification of quantified ↵Chantal Keller2021-04-211-15/+15
| | | | | | | | hypotheses
* | Port to 8.10Chantal Keller2021-04-211-1/+1
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-04-215-16/+57
|\|
| * Warning (instead of error) for unsupported lemmas (#90)ckeller2021-04-215-16/+57
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-04-213-2/+29
|\|
| * Convert hypotheses from Prop to bool (#89)ckeller2021-04-213-2/+29
| | | | | | | | | | | | | | * 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 .
* | Un-backport #87Chantal Keller2021-04-011-1/+1
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-04-011-2/+3
|\|
| * Backport #87 to Coq-8.9 (closes #87)Chantal Keller2021-04-011-1/+1
| |
| * use is_true from standard librarylduboisd2021-04-011-2/+3
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-02-236-165/+312
|\|
| * Link equality on uninterpreted sorts with SMT equality (#86)ckeller2021-02-236-165/+312
| | | | | | | | | | Equality is now treated from uninterpreted sorts, which makes them usable with tactics! Closes #17 Closes #78
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2021-01-131-0/+15
|\|
| * Reify polymorphic termsckeller2021-01-051-0/+15
| | | | | | A polymorphic term is now reified as a whole of the term applied to one or many types. The same polymorphic term applied to different types is reified as different monomorphic terms.
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2020-06-301-1/+1
|\|
| * Empty bit-vectors are not valid in SMT (fixes #76)Chantal Keller2020-06-301-1/+1
| |
* | Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10Chantal Keller2020-05-152-57/+75
|\|