aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Fix bug #5019 (looping zify on dependent types)Gravatar Jason Gross2017-06-01
| | | | | | | | | | | | | | This fixes [bug #5019](https://coq.inria.fr/bugs/show_bug.cgi?id=5019), "[zify] loops on dependent types"; before, we would see a `Z.of_nat (S ?k)` which could not be turned into `Z.succ (Z.of_nat k)`, add a hypothesis of the shape `0 <= Z.of_nat (S k)`, turn that into a hypothesis of the shape `0 <= Z.succ (Z.of_nat k)`, and loop forever on this. This may not be the "right" fix (there may be cases where `zify` should succeed where it still fails with this change), but this is a pure bugfix in the sense that the only places where it changes the behavior of `zify` are the places where, previously, `zify` looped forever.
* Add opened bug 5019Gravatar Jason Gross2017-06-01
|
* Merge PR#560: Reinstate fixpoint refolding in [cbn], deactivated by mistake ↵Gravatar Maxime Dénès2017-05-31
|\ | | | | | | (EDIT: for mutual fixpoints)
* \ Merge PR#699: Fix bug 5550: "typeclasses eauto with" does not work with ↵Gravatar Maxime Dénès2017-05-31
|\ \ | | | | | | | | | section variables.
* \ \ Merge PR#693: A subtle bug in tclWITHHOLES.Gravatar Maxime Dénès2017-05-30
|\ \ \
* \ \ \ Merge PR#695: Omega: fix bug #4132Gravatar Maxime Dénès2017-05-30
|\ \ \ \
| | | * | Fix bug 5550: "typeclasses eauto with" does not work with section variables.Gravatar Théo Zimmermann2017-05-30
| |_|/ / |/| | |
| * | | Omega: use "simpl" only on coefficents, not on atoms (fix #4132)Gravatar Pierre Letouzey2017-05-29
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Two issues in one: - some focused_simpl were called on the wrong locations - some focused_simpl were done on whole equations In the two cases, this could be bad if "simpl" goes too far with respect to what omega expects: later calls to "occurrence" might fail. This may happen for instance if an atom isn't a variable, but a let-in (b:=5:Z in the example).
* | | Merge PR#685: Fix a bug in checkerGravatar Maxime Dénès2017-05-29
|\ \ \
* \ \ \ Merge PR#546: Fix for bug #4499 and other minor related bugsGravatar Maxime Dénès2017-05-29
|\ \ \ \
| | * | | Fix a bug in checkerGravatar Amin Timany2017-05-28
| |/ / / |/| | | | | | | | | | | Universe constraints of the inductive types were not instantiated before being pushed on the environment. This commit fixes this bug.
| | * | Fixing a subtle bug in tclWITHHOLES.Gravatar Hugo Herbelin2017-05-28
| |/ / |/| | | | | | | | This fixes Théo's bug on eset.
* | | Merge PR#679: Bug 5546, qualify datatype constructors when needed in Show MatchGravatar Maxime Dénès2017-05-28
|\ \ \
* \ \ \ Merge PR#634: Fix bug #5526, don't check for nonlinearity in notation if ↵Gravatar Maxime Dénès2017-05-26
|\ \ \ \ | | | | | | | | | | | | | | | printing only
* \ \ \ \ Merge PR#672: Add parsers-examples target to fiat-parsers ciGravatar Maxime Dénès2017-05-26
|\ \ \ \ \
| | | * | | Bug 5546, qualify datatype constructors when neededGravatar Paul Steckler2017-05-25
| | | | | |
* | | | | | Merge PR#416: Fix the way setoid_rewrite handles bindings.Gravatar Maxime Dénès2017-05-25
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| | * | | | Add parsers-examples target to fiat-parsers ciGravatar Jason Gross2017-05-23
| |/ / / / |/| | | | | | | | | This tests a bit more of fiat-parsers, adding an extra ~3 minutes to the build.
| * | | | Fix bindings handling of setoid_rewrite.Gravatar Cyprien Mangin2017-05-23
|/ / / / | | | | | | | | | | | | | | | | This fixes the discrepancy between "rewrite H with (1 := x)" and "setoid_rewrite H with (1 := x)".
* | | | Merge PR#653: Bug #5535, test for Show with -emacsGravatar Maxime Dénès2017-05-20
|\ \ \ \
* \ \ \ \ Merge PR#641: Fix bug #5486, don't reverse ids in tuplesGravatar Maxime Dénès2017-05-20
|\ \ \ \ \
| | * | | | add test for Show with -emacs, bug 5535Gravatar Paul Steckler2017-05-19
| |/ / / / |/| | | |
| | * | | Fixing bug #5526,allow nonlinear variables in Notation patternsGravatar Paul Steckler2017-05-17
| | | | |
| * | | | fix swapping of ids in tuples, bug 5486Gravatar Paul Steckler2017-05-17
|/ / / /
* | | | Merge PR#635: Fixing #5522 (anomaly with free vars of pat)Gravatar Maxime Dénès2017-05-17
|\ \ \ \
| * | | | Fixing bug #5222 (anomaly with "`pat" in the presence of scope delimiters).Gravatar Hugo Herbelin2017-05-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We seized this opportunity to factorize the code for interning `pat with more general pre-existing code. More precisely: There was already a function to compute the free variables of a pattern. Commit c6d9d4fb rewrote an approximation of it and #5222 hits cases non-treated by this function. We remove the partially-defined redundant code and use instead the existing code since intern_cases_pattern, already called, was already doing this computation. (In doing so, we discover a bug in merging names in the presence of nested "as" clauses, which we fix in previous commit. Additionally, intern_local_pattern was misleadingly overkill to simply mean a folding on Id.Set.add and we avoid the detour.
| * | | | Fixing a bug with nested "as" clauses in "match".Gravatar Hugo Herbelin2017-05-16
| | | | |
* | | | | Merge PR#624: Switch bedrock to mit-plv baseGravatar Maxime Dénès2017-05-16
|\ \ \ \ \ | |/ / / / |/| | | |
* | | | | Removing a line warned unused.Gravatar Hugo Herbelin2017-05-14
| | | | |
* | | | | Removing a variable warned unused.Gravatar Hugo Herbelin2017-05-14
| |/ / / |/| | |
| * | | Switch bedrock to mit-plv baseGravatar Jason Gross2017-05-10
|/ / /
* | | Merge PR#604: FIx bug #5300: Anomaly: Uncaught exception Not_found" in ↵Gravatar Maxime Dénès2017-05-10
|\ \ \ | | | | | | | | | | | | "Print Assumptions".
* \ \ \ Merge PR#591: Add bmsherman/topology to the ciGravatar Maxime Dénès2017-05-09
|\ \ \ \
| * | | | Put .travis.yml in alphabetical orderGravatar Jason Gross2017-05-09
| | | | |
* | | | | Merge PR#609: Fix bug #3659: -time should understand multibyte encodings.Gravatar Maxime Dénès2017-05-09
|\ \ \ \ \
| * | | | | Fix bug #3659: -time should understand multibyte encodings.Gravatar Pierre-Marie Pédrot2017-05-05
|/ / / / / | | | | | | | | | | | | | | | | | | | | We assume Coq always outputs UTF-8 (is it really the case?) and cut strings after 30 UTF-8 characters instead of using the standard String function.
| | * / / FIx bug #5300: uncaught exception in "Print Assumptions".Gravatar Cyprien Mangin2017-05-03
| |/ / / |/| | |
* | | | Merge PR#603: Fix outdated description in RefMan.Gravatar Maxime Dénès2017-05-03
|\ \ \ \
| * | | | Fix outdated description in RefMan.Gravatar Théo Zimmermann2017-05-03
|/ / / /
* | | | Merge PR#597: Fixing #5487 (v8.5 regression on ltac-matching expressions ↵Gravatar Maxime Dénès2017-05-02
|\ \ \ \ | | | | | | | | | | | | | | | with evars).
* \ \ \ \ Merge PR#589: remove unneeded -emacs flag in coq-prog-args in test-suite filesGravatar Maxime Dénès2017-05-02
|\ \ \ \ \
* \ \ \ \ \ Merge PR#599: Repairing `Set Rewriting Schemes`Gravatar Maxime Dénès2017-05-02
|\ \ \ \ \ \
* | | | | | | Avoiding registering files from _build_ci when not calling Makefile.ci.Gravatar Hugo Herbelin2017-05-02
| | | | | | |
| | | | * | | Add bmsherman/topology to the ciGravatar Jason Gross2017-05-01
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | This development of @bmsherman tests universe polymorphism and setoid rewriting in type, and should build with v8.6 and trunk.
| * | | | | Fixing Set Rewriting Schemes bugs introduced in v8.5.Gravatar Hugo Herbelin2017-05-01
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | - Fixing a typo introduced in 31dbba5f. - Adapting to computation of universe constraints in pretyping. - Adding a regression test.
| * | | | remove unneeded -emacs flag to coq-prog-argsGravatar Paul Steckler2017-05-01
| | | | |
| | * | | Fixing #5487 (v8.5 regression on ltac-matching expressions with evars).Gravatar Hugo Herbelin2017-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fix follows an invariant enforced in proofview.ml on the kind of evars that are goals or that occur in goals. One day, evar kinds will need a little cleaning... PS: This is a second attempt, completing db28e82 which was missing the case PEvar in constr_matching.ml. Indeed the attached fix to #5487 alone made #2602 failing, revealing that the real cause for #2602 was actually not fixed and that if the test for #2602 was working it was because of #5487 hiding the real problem in #2602.
| | * | | Really fixing #2602 which was wrongly working because of #5487 hiding the cause.Gravatar Hugo Herbelin2017-05-01
| |/ / / |/| | | | | | | | | | | | | | | The cause was a missing evar/evar clause in ltac pattern-matching function (constr_matching.ml).
* | | | Answer to db28e827d: I did test the commit on test-suite but for someGravatar Hugo Herbelin2017-05-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | reason I overlooked the result, maybe a missing make clean. As for testing on the travis test architecture, I could have done it. This is a question of compromise. I was so certain that it would work that I did not test. And anyway, the travis test is not absolute either. In any case, I'm very sorry about the confusion it introduced. ~~~~ BY THE WAY, NO NEED TO SHOUT ~~~~ ~~~~ IT IS A BIG MISCONCEPTION ABOUT HUMAN BEINGS ~~~~ ~~~~ TO BELIEVE THAT THEY DO MISTAKES INTENTIONALLY ~~~~ Thank you!
* | | | Revert "Fixing #5487 (v8.5 regression on ltac-matching expressions with evars)."Gravatar Maxime Dénès2017-04-28
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | One day I'll get bored of spending my nights fixing commits that were pushed without being tested, and I'll ask for removal of push rights. But for now let's pretend I haven't insisted enough: ~~~~ PLEASE TEST YOUR COMMITS BEFORE PUSHING ~~~~ Thank you!