| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-12 | Merge PR #12146: Fixes #10812: tactic subst failure with section variables ↵ | Pierre-Marie Pédrot | |
| indirectly dependent in goal Ack-by: Zimmi48 Reviewed-by: ppedrot | |||
| 2020-05-07 | Tactic subst now inactive on section variables occurring indirectly in goal. | Hugo Herbelin | |
| This is saner behavior making subst reversible, as discussed in #12139. This also fixes #10812 and #12139. In passing, we also simplify a bit the code of "subst_all". | |||
| 2020-05-06 | HaskellExtr: Add type annotations to Prelude.== | Jason Gross | |
| Also `Export ExtrHaskellBasic` in `ExtrHaskellString`. Fixes #12257 Fixes #12258 | |||
| 2020-05-02 | LtacProf now handles multi-success backtracking | Jason Gross | |
| Fixes #12196 | |||
| 2020-04-24 | Make the nsatz test-suite pass | Jason Gross | |
| 2020-04-24 | Split off Nsatz tactic part into NsatzTactic | Jason Gross | |
| Closes #5445 Note that we use `Include` rather than `Export` to expose the machinery defined in `NsatzTactic` from `Nsatz` to preserve backwards compatibility with developments relying on absolute names of the constants previously defined in `Nsatz.v`. | |||
| 2020-04-21 | Adapt test-suite to #12023. | Hugo Herbelin | |
| 2020-04-21 | Merge PR #12116: Fixing #12045: missing normalization in conclusion of ↵ | Pierre-Marie Pédrot | |
| custom induction scheme Reviewed-by: ppedrot | |||
| 2020-04-21 | Merge PR #11883: Fix #7812: autounfold's behavior depends on file names | Hugo Herbelin | |
| Reviewed-by: herbelin | |||
| 2020-04-20 | Fixing #12045 (missing normalization in conclusion of custom induction scheme). | Hugo Herbelin | |
| 2020-04-17 | ZArith: move lia hints to a dedicated module | Vincent Laporte | |
| 2020-04-17 | Merge PR #11972: Fix require in section | Pierre-Marie Pédrot | |
| Ack-by: Zimmi48 Reviewed-by: ppedrot | |||
| 2020-04-13 | Close #11935: section variables do not have universe instances. | Gaëtan Gilbert | |
| 2020-04-13 | Fix #11783 Require in Section | Gaëtan Gilbert | |
| 2020-04-11 | Fix #7812 | Attila Gáspár | |
| 2020-04-03 | Fix the test for bug #4544. | Pierre-Marie Pédrot | |
| It seems that this PR is making the rewrite much, much faster. | |||
| 2020-04-01 | Merge PR #11945: Fix #11941: anomaly in equality schemes | Emilio Jesus Gallego Arias | |
| Reviewed-by: ejgallego Reviewed-by: ppedrot | |||
| 2020-03-31 | Remove special case for implicit inductive parameters | Maxime Dénès | |
| Co-authored-by: Jasper Hugunin <jasper@hugunin.net> Co-authored-by: Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net> | |||
| 2020-03-28 | Remove SearchAbout command, deprecated in 8.5 | Jim Fehrle | |
| 2020-03-28 | Fix #11941: anomaly in equality schemes | Gaëtan Gilbert | |
| 2020-03-26 | Fix #11845: anomaly when including partially applied functor | Gaëtan Gilbert | |
| 2020-03-23 | Fix levels of `<=?` and `<?` in the stdlib | Jason Gross | |
| They were defined at level 70, no associativity in all but three places, where they were instead declared at level 35. Fixes #11890 | |||
| 2020-03-17 | Properly thread let-bindings in Funind principle construction. | Pierre-Marie Pédrot | |
| Fixes #11846: Funind fails to generate principles for terms with let bindings. | |||
| 2020-03-17 | Merge PR #11811: Remove a positivity check when Positivity Checking is off | Gaëtan Gilbert | |
| Reviewed-by: SkySkimmer | |||
| 2020-03-17 | Add test for PR11811 (disable a positivity check) | SimonBoulier | |
| 2020-03-13 | Implementing postponed constraints in TC resolution | Matthieu Sozeau | |
| A constraint can be stuck if it does not match any of the declared modes for its head (if there are any). In that case, the subgoal is postponed and the next ones are tried. We do a fixed point computation until there are no stuck subgoals or the set does not change (it is impossible to make it grow, as asserted in the code, because it is always a subset of the initial goals) This allows constraints on classes with modes to be treated as if they were in any order (yay for stability of solutions!). Also, ultimately it should free us to launch resolutions more agressively (avoiding issues like the ones seen in PR #10762). Add more examples of the semantics of TC resolution with apply in test-suite Properly catch ModeMatchFailure on calls to map_e* Add fixed bug 9058 to the test-suite Close #9058 Add documentation Fixes after Gaëtan's review. Main change is to not use exceptions for control-flow Update tactics/class_tactics.ml Clearer and more efficient mode mismatch dispatch Co-Authored-By: Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net> Remove exninfo argument | |||
| 2020-03-11 | Merge PR #11769: Fix #9930: "change" replaces 0-param projections by constants | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-03-09 | Fix #11730: Mangle Names vs Infix | Gaëtan Gilbert | |
| 2020-03-09 | Fix #9930: "change" replaces 0-param projections by constants | Gaëtan Gilbert | |
| 2020-03-06 | Merge PR #11723: Fix mishandling of sigma in guess_elim (regression from 8.11) | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-03-01 | test-suite file for spurious universe generation | Matthieu Sozeau | |
| 2020-02-28 | Merge PR #11609: [stm] Use Default Proof Using only with Proof | Enrico Tassi | |
| 2020-02-28 | [stm] Use Default Proof Using only with Proof | Tej Chajed | |
| Fixes #11608. This means -vos doesn't skip proofs for definitions that end with Qed but don't include Proof and rely on a Set Default Proof Using. However, this fixes the bug where this pattern would instead hang, due to #11564. | |||
| 2020-02-26 | Consolidate int63-related notations | Maxime Dénès | |
| We avoid redundant notations for the same concepts and make sure notations do not break Ltac parsing for users of these libraries. | |||
| 2020-02-24 | Merge PR #11560: Fix #11549: Ltac2 is incompatible with $. | Tej Chajed | |
| Reviewed-by: tchajed | |||
| 2020-02-23 | Merge PR #11120: Refactoring code for application printing + fixing #11091 ↵ | Emilio Jesus Gallego Arias | |
| (inconsistencies in parsing/printing notations to partial applications) Ack-by: Zimmi48 Reviewed-by: ejgallego Ack-by: jfehrle | |||
| 2020-02-23 | Merge pull request #11629 from ppedrot/fix-11552 | Tej Chajed | |
| Fix #11552: Ltac2 breaks query commands during proofs. | |||
| 2020-02-22 | Fixes #4690: do not allow @f in notations when f is a notation variable. | Hugo Herbelin | |
| 2020-02-22 | Merge PR #11639: Fixes #10917: anomaly in building return clause of n-ary ↵ | Emilio Jesus Gallego Arias | |
| pattern-matching problem Reviewed-by: ejgallego | |||
| 2020-02-21 | Notations: Avoiding computing parsing rule when in onlyprinting mode. | Hugo Herbelin | |
| In particular, this fixes #9741. | |||
| 2020-02-20 | Fixing #11114 (anomaly with Extraction Implicit on records). | Hugo Herbelin | |
| This was due to an inconsistency in handling implicit arguments in the fields and in the constructor of a record. | |||
| 2020-02-20 | Fixes #10917 (missing lift in building return clause by inversion). | Hugo Herbelin | |
| 2020-02-19 | Fix #11549: Ltac2 is incompatible with $. | Pierre-Marie Pédrot | |
| We use the same kind of trick as the one we used for &IDENT, namely check that no space appear between the dollar sign and the identifier. | |||
| 2020-02-19 | Fix #11552: Ltac2 breaks query commands during proofs. | Pierre-Marie Pédrot | |
| Actually, callers of the Pvernac.register_proof_mode function have to manually register the parsing of vernacular queries themselves. This probably qualifies as an oversight from myself. | |||
| 2020-02-16 | Fixing bug #9521 (anomaly due to missing declaration of level in custom entry). | Hugo Herbelin | |
| This fixes also #9640 part 1. | |||
| 2020-02-15 | Fixes #11331 (unexpected level collisions between custom entries and constr). | Hugo Herbelin | |
| There was a collision at the time of interpreting subentries (in metasyntax.ml) but also at the time of "optimizing" the entries (in egramcoq.ml). Also fixes #9517, fixes #9519, fixes #9640 (part 3). | |||
| 2020-02-11 | Merge PR #11554: Fix #11553: magicaly_constant_of_fixbody checks existence ↵ | Pierre-Marie Pédrot | |
| of made up constant Reviewed-by: ppedrot | |||
| 2020-02-09 | Merge PR #11518: Fix #11515: Ltac2 rewrite on wildcard. | Gaëtan Gilbert | |
| Reviewed-by: SkySkimmer | |||
| 2020-02-09 | Fix #11553: magicaly_constant_of_fixbody checks existence of made up constant | Gaëtan Gilbert | |
| 2020-02-04 | Fix #11515: Ltac2 rewrite on wildcard. | Pierre-Marie Pédrot | |
| There was an evar leak due to an evarmap not being threaded correctly when computing open terms. | |||
