aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* fixing bug 4609: document an option governing the generation of equalitiesGravatar Yves Bertot2016-10-03
| | | | between proofs in tactic injection, with a side-effect on inversion.
* More tests for tactic "subst".Gravatar Hugo Herbelin2016-10-02
|
* Merge branch 'v8.5' into v8.6Gravatar Pierre-Marie Pédrot2016-10-02
|\
* | Move bullet detection from lexer to parser (bug #5102).Gravatar Guillaume Melquiond2016-10-02
| | | | | | | | | | | | | | | | | | | | That way, bullet detection no longer depends on a global variable indicating whether a line is starting. This causes a small change in the recognized language. Before the commit, "--++" was recognized as a bullet "--" followed by a keyword "++" when at the start of a line; now it is always recognized as a keyword "--++". This also fixes a bug in Tok.to_string as a side-effect.
* | Fix bug #5069: Scheme Equality gives anomalies in sections.Gravatar Pierre-Marie Pédrot2016-10-02
| |
* | Fix bug #5087: Improve the error message on record with duplicated fields.Gravatar Pierre-Marie Pédrot2016-10-02
| |
* | Fix bug #4661: Cannot mask the absolute name.Gravatar Pierre-Marie Pédrot2016-10-01
| | | | | | | | | | | | The patch is quite dumb: it essentially consists in alpha-renaming bound module names when printing a functor, by checking that the name was not already present, and generating a fresh one otherwise.
* | Speed up the Search commands.Gravatar Guillaume Melquiond2016-10-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The blacklist set was converted into a string list for each item in the environment during a search. In fact, the blacklist was checked for each item, even if the item was already known to be ultimately discarded. This commit fixes both performance issues. First, blacklist_filter is no longer used directly but in two stages. Second, the boolean values are no longer computed before calling the shortcutting operators. It seems like someone had already noticed part of the second issue, since some (but not all) of the boolean values were lazily computed. The speed up becomes noticeable when the blacklist set contains more than four elements.
* | Micro refactoring: use exact_no_check.Gravatar Théo Zimmermann2016-10-01
| | | | | | | | This does not affect the semantics of these functions.
| * Quick fix to another bug of "subst" introduced in 4e3d464 and spotted by Maxime.Gravatar Hugo Herbelin2016-09-30
| |
* | Fix bug #5045: [generalize] creates ill-typed terms in 8.6.Gravatar Pierre-Marie Pédrot2016-09-30
| |
* | Fix bug #4471: [generalize dependent] permits ill-typed terms in trunk.Gravatar Pierre-Marie Pédrot2016-09-30
| | | | | | | | | | | | This bug was introduced by 37ab45726, because the new apply_type function was not checking that the new goal was indeed well-typed. We add this check locally in the generalize dependent tactic.
* | coqc: recognize -profile-ltac-cutoffGravatar Enrico Tassi2016-09-30
| |
* | test-suite/output-modulo-time made more robustGravatar Enrico Tassi2016-09-30
| | | | | | | | Order of items made stable
* | Merge remote-tracking branch 'github/pr/303' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ | | | | | | | | | Was PR#303: LtacProf cutoff is for total percent, not time
* \ \ Merge remote-tracking branch 'github/pr/299' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ | | | | | | | | | | | | | | | | Was PR#299: Fix bug #4869, allow Prop, Set, and level names in constraints.
* \ \ \ Merge branch 'v8.5' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ \ | | |_|/ | |/| |
| * | | Fix test-suite.Gravatar Maxime Dénès2016-09-30
| | | | | | | | | | | | | | | | Restore subst output test file modified by mistake.
* | | | Merge remote-tracking branch 'github/pr/302' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ \ | | | | | | | | | | | | | | | Was PR#302: Set the default LtacProf cutoff to 2%
* \ \ \ \ Merge remote-tracking branch 'github/pr/281' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | Was PR#281: Fix indentation of -profile-ltac in -help
* \ \ \ \ \ Merge remote-tracking branch 'github/pr/280' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was PR#280: Document that [Reset Ltac Profile] is not synchronized with the document state
* | | | | | | Restore code ignoring <W> lines in output (camlp5 warnings)Gravatar Enrico Tassi2016-09-30
| | | | | | |
* | | | | | | Ignore file names in warning emitted by test-suite/output/* (#5111)Gravatar Enrico Tassi2016-09-30
| | | | | | |
* | | | | | | In <= 8.5 compat accept "Arguments f /" even if f has arguments (#5112)Gravatar Enrico Tassi2016-09-30
| | | | | | |
* | | | | | | Give name to warning added in (fdfcdc): arguments-ignore-rename-nonimplGravatar Enrico Tassi2016-09-30
| | | | | | |
| | | | * | | Merge remote-tracking branch 'github/pr/294' into v8.5Gravatar Maxime Dénès2016-09-30
| | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Was PR#294: Make error message more helpful.
* | | | | \ \ \ Merge remote-tracking branch 'github/pr/257' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Was PR#257: [checker] Fix/fine tune printing.
* \ \ \ \ \ \ \ \ Merge branch 'v8.5' into v8.6Gravatar Maxime Dénès2016-09-30
|\ \ \ \ \ \ \ \ \ | | |_|_|_|/ / / / | |/| | | | | | |
| * | | | | | | | Merge branch '4762' into v8.5Gravatar Maxime Dénès2016-09-30
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was PR#293: Fix #4762 (eauto weaker than auto).
| | * | | | | | | | Fix #4762.Gravatar Cyprien Mangin2016-09-30
| | | | | | | | | |
| | | | | | | | | * LtacProf cutoff is for total percent, not timeGravatar Jason Gross2016-09-29
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
| | | | | | * | | Set the default LtacProf cutoff to 2%Gravatar Jason Gross2016-09-29
| |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was the original value from Tobias' code. When a user passes -profile-ltac on the command line, or inserts [Show Ltac Profile] in the document, the most useful default behavior is to not overload them with useless information. When GUI clients want to display fancier profiling information, there is no cost to the user to requiring them to specify what cutoff they want. If the GUI client does not have any special LtacProf handling, the most useful presentation is again the one that cuts off the display at 2% total time.
* | | | | | | | Fix bug #4798: compat notations should not modify the parser.Gravatar Pierre-Marie Pédrot2016-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a quick fix. The Metasyntax module should be thoroughly revised in trunk, because it starts featuring a lot of spaghetti code and redundant data.
* | | | | | | | STM: compute the correct state for edited Qed (#5086)Gravatar Enrico Tassi2016-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a proof is 're-opened', the Qed node does not change. Still the STM has to install the old state (where only the future proof has to be updated). This bit was missing. Why was it working: the bug happens only if you reopen the very last proof, i.e. there is no sentence that stays valid after the Qed. If there is such a sentence, its state was computed correctly before, and is not changed. If it is the very last, then the next state is based on the wrong one...
* | | | | | | | Arguments: cleanup + detect discrepancy rename/implicit (#3753)Gravatar Enrico Tassi2016-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems warnings are not taken into account in output/ tests.
* | | | | | | | Merge branch 'bug5036' into v8.6Gravatar Matthieu Sozeau2016-09-29
|\ \ \ \ \ \ \ \
| * | | | | | | | Fix bug #5036 autorewrite, sections and universesGravatar Matthieu Sozeau2016-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Universe context not properly declared. Improve API and code in declare.ml to allow declaration of universe contexts, used by declaration of universes and constraints (separately).
* | | | | | | | | Merge branch 'bug4723' into v8.6Gravatar Matthieu Sozeau2016-09-29
|\ \ \ \ \ \ \ \ \
* | | | | | | | | | Being more informative about the change of behavior of "subst".Gravatar Hugo Herbelin2016-09-29
| | | | | | | | | |
| | | | | | | | | * Fix bug #4869, allow Prop, Set, and level names in constraints.Gravatar Matthieu Sozeau2016-09-29
| | | | | | | | | |
* | | | | | | | | | fix bug 3683 : adds references to the web site for the bug trackerGravatar Yves Bertot2016-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in error messages
* | | | | | | | | | Fix bug #5011: Anomaly on [Existing Class].Gravatar Pierre-Marie Pédrot2016-09-29
| |_|_|_|_|_|_|_|/ |/| | | | | | | |
| | | * | | | | | Fix a bug in subst releaved by an OCaml warning.Gravatar Maxime Dénès2016-09-29
| | | |/ / / / /
* | | | | | | | test-suite: fix sed on OS X, does not handle +Gravatar Matthieu Sozeau2016-09-29
| | | | | | | |
| * | | | | | | Cleanup API, making inference_hook optionalGravatar Matthieu Sozeau2016-09-29
| | | | | | | |
* | | | | | | | Ncring_initial: avoid a notation overridingGravatar Pierre Letouzey2016-09-29
| | | | | | | |
* | | | | | | | Extraction: ignore some useless stuff about universesGravatar Pierre Letouzey2016-09-29
| | | | | | | |
* | | | | | | | Argument : assert does fail if no arg is given (fix #4864)Gravatar Enrico Tassi2016-09-29
| | | | | | | |
* | | | | | | | -profile-ltac-cutoff alike Show Ltac Profile Cutoff (#5100)Gravatar Enrico Tassi2016-09-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this command line flag one can profile ltac in files /and/ trim the results without actually touching the files.
* | | | | | | | Ring_theory: avoid overriding a few notationsGravatar Pierre Letouzey2016-09-28
| | | | | | | |