| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-01 | Changing fixpoint message "decreasing" -> "guarded". | Hugo Herbelin | |
| This is to be compatible with the possibility of having non truly recursive fixpoints. | |||
| 2020-05-01 | Fixing #11903: Fixpoints not truly recursive in standard library. | Hugo Herbelin | |
| There was also a non truly recursive in the doc. | |||
| 2020-05-01 | Warn when a (co)fixpoint is not truly recursive. | Hugo Herbelin | |
| 2020-05-01 | Slight modification of the partial-order algorithm so that it does not | Hugo Herbelin | |
| remove itself in the set of elements bigger than it if it is indeed the case. This does not impact the warning issued when the recursivity is not mutual but this produces a result consistent with the unary case when the order is reflexive (i.e. results of the form (x,Inr[x,y]) happens also in the mutual case to indicate a cycle x<=y<=x while before we had results of the form (x,Inr[x]) only in the unary case). I.e.: Before: (x,[y]),(y,[x]) -> (x,Inr[]),(y,Inl x) (x,[x]) -> (x,Inr[x]) Now: (x,[y]),(y,[x]) -> (x,Inr[x]),(y,Inl x) (x,[x]) -> (x,Inr[x]) | |||
| 2020-05-01 | Move essential vocabulary and syntax conventions to section on basics. | Théo Zimmermann | |
| 2020-05-01 | Merge PR #12221: Replace QSeqEquiv by QCauchySeq, simplify proofs. | Michael Soegtrop | |
| Reviewed-by: MSoegtropIMC | |||
| 2020-05-01 | Preserve vernac chapter. | Théo Zimmermann | |
| 2020-05-01 | Extract two new files out of Gallina chapter. | Théo Zimmermann | |
| 2020-05-01 | Create section on writing libraries with only deprecated attributes. | Théo Zimmermann | |
| 2020-05-01 | Extract deprecated attribute from Gallina chapter. | Théo Zimmermann | |
| 2020-05-01 | Remove flags, options and tables from vernac chapter. | Théo Zimmermann | |
| 2020-05-01 | Remove lexical conventions and attributes from Gallina chapter. | Théo Zimmermann | |
| 2020-05-01 | Create basics out of sections from Gallina and Vernac chapters. | Théo Zimmermann | |
| 2020-05-01 | Create section on basics with just flags, options and tables. | Théo Zimmermann | |
| 2020-05-01 | Extract flags, options and tables from vernac chapter. | Théo Zimmermann | |
| 2020-05-01 | Create section on basics with just lexical conventions and attributes. | Théo Zimmermann | |
| 2020-05-01 | Extract lexical conventions and attributes from Gallina chapter. | Théo Zimmermann | |
| 2020-05-01 | Merge PR #12217: Fix #12215: ci scripts naming inconsistencies | Emilio Jesus Gallego Arias | |
| Reviewed-by: ejgallego | |||
| 2020-05-01 | Merge PR #12222: Less confusing configure message when lablgtk exists but ↵ | Emilio Jesus Gallego Arias | |
| not lablgtksourceview Reviewed-by: ejgallego | |||
| 2020-05-01 | do not re-export ListNotations from Program: vst overlay | Antonio Nikishaev | |
| 2020-04-30 | Replace QSeqEquiv by QCauchySeq, simplify proofs. | Vincent Semeria | |
| Force Cauchy modulus equal to identity, make division transparent Fix test | |||
| 2020-04-30 | Less confusing configure message when lablgtk exists but not lablgtksourceview. | Hugo Herbelin | |
| 2020-04-30 | Merge PR #12213: [zify] add support for Nat.le, Nat.lt and Nat.eq | Vincent Laporte | |
| Reviewed-by: vbgl | |||
| 2020-04-30 | renaming in Makefile.ci and ci scripts to avoid inconsistencies | Olivier Laurent | |
| 2020-04-30 | Merge PR #12216: Remove outdated code and comments in Declare. | Emilio Jesus Gallego Arias | |
| Reviewed-by: ejgallego | |||
| 2020-04-30 | Move availability_of_prim_token | Pierre Roux | |
| 2020-04-30 | [zify] add support for Nat.le, Nat.lt and Nat.eq | Frédéric Besson | |
| Nat.le, Nat.lt and Nat.eq are aliased to le, lt and @eq nat. The required declarations are now added in ZifyInst. | |||
| 2020-04-30 | Merge PR #12107: Remove mod_constraints field of module body | Pierre-Marie Pédrot | |
| Reviewed-by: ppedrot | |||
| 2020-04-30 | Remove outdated code and comments in Declare. | Pierre-Marie Pédrot | |
| Some comments referred to the old way of redeclaring constants at section closure. One of the comments was almost 20 years old... | |||
| 2020-04-30 | Symmetry in conclusions of List.map_eq_* | Olivier Laurent | |
| allow simplified iterated applications | |||
| 2020-04-30 | Merge PR #12208: Reduce rational numbers in Cauchy real addition, to ↵ | Michael Soegtrop | |
| accelerate it Reviewed-by: MSoegtropIMC | |||
| 2020-04-30 | do not re-export ListNotations from Program: fix testsuite | Antonio Nikishaev | |
| 2020-04-30 | do not re-export ListNotations from Program: changelog | Antonio Nikishaev | |
| 2020-04-30 | do not re-export ListNotations from Program: overlays | Antonio Nikishaev | |
| 2020-04-30 | do not re-export ListNotations from Program | Antonio Nikishaev | |
| 2020-04-29 | When TIMED=1, emit timing info for OCaml files | Jason Gross | |
| 2020-04-29 | Merge PR #12209: Merge duplicates in .mailmap | Théo Zimmermann | |
| Reviewed-by: Zimmi48 Ack-by: rnrand | |||
| 2020-04-29 | Merge duplicates in .mailmap | Jason Gross | |
| I gave preference to the email address with the larger number of commits. To find duplicates, I used the script ```bash for i in $(git shortlog -nse | sed s'/^\s*[0-9]*\s*//g' | grep -o '^[^<]*' | sed s'/\s*$//g' | sed s'/ /,/g'); do if [ $(git shortlog -nse | sed s'/ /,/g' | grep -c "$i") -gt 1 ]; then git shortlog -nse | grep "$(echo "$i" | sed s'/,/ /g')"; fi; done ``` | |||
| 2020-04-29 | Reduce rational numbers in Cauchy real addition, to accelerate it | Vincent Semeria | |
| 2020-04-29 | Merge PR #11606: [tools] Add memory stats to tables by default | Emilio Jesus Gallego Arias | |
| Reviewed-by: ejgallego | |||
| 2020-04-29 | Merge PR #12027: Fix #3415: coqdoc links projections rather than constructor ↵ | Emilio Jesus Gallego Arias | |
| in record tuples Reviewed-by: ejgallego | |||
| 2020-04-29 | Merge PR #12198: CI: change ext-lib url, it is at coq-community now | Emilio Jesus Gallego Arias | |
| Reviewed-by: Zimmi48 Reviewed-by: ejgallego | |||
| 2020-04-29 | Merge PR #12202: Centralize the call to `tclEFFECTS` in scheme declaration | Emilio Jesus Gallego Arias | |
| Reviewed-by: ejgallego | |||
| 2020-04-29 | Merge PR #12150: Support in-line glossary definitions and references with an ↵ | Clément Pit-Claudel | |
| index Ack-by: Zimmi48 | |||
| 2020-04-29 | Merge PR #12158: [univ] API to demote global universes | Matthieu Sozeau | |
| Reviewed-by: mattam82 | |||
| 2020-04-29 | Merge PR #12195: [doc] [sphinx] Run in silent mode by default | Théo Zimmermann | |
| Reviewed-by: Zimmi48 | |||
| 2020-04-29 | Merge PR #12174: [ci] Add coq-tools to the CI | Théo Zimmermann | |
| Reviewed-by: Zimmi48 | |||
| 2020-04-29 | Support in-line glossary entries and references | Jim Fehrle | |
| with an index | |||
| 2020-04-29 | Merge PR #12203: [ci] [doc] misspelled script name create_overlays.sh | Théo Zimmermann | |
| Reviewed-by: Zimmi48 | |||
| 2020-04-29 | [univ] API to demote global universes | Enrico Tassi | |
