| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-02-07 | Merge PR#425: [travis] [External CI] [geocoq] don't build slow file | Maxime Dénès | |
| 2017-02-07 | [travis] [External CI] [geocoq] don't build slow file | Emilio Jesus Gallego Arias | |
| Unfortunately `Ch16_coordinates_with_functions.v` takes alone ~15 minutes which is too much for Travis. Pity, because it was a nice use case. | |||
| 2017-02-07 | [travis] [External CI] iris-coq: fix dependencies | Emilio Jesus Gallego Arias | |
| 2017-02-07 | [travis] [External CI] GeoCoq | Emilio Jesus Gallego Arias | |
| 2017-02-07 | [travis] Move ci files from `tools` to `dev`. | Maxime Dénès | |
| 2017-01-26 | Adding a printer for Proof.proof reflecting the focusing layout. | Hugo Herbelin | |
| This is a modest contribution serving before all the purpose of displaying the focus stack and the shelf and give_up list. It does not print the sigma (while it could). Any improvements are welcome. | |||
| 2017-01-19 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-12-08 | Windows build scripts for 8.6 final. | Maxime Dénès | |
| 2016-12-08 | Fix paths in 32-bit windows build scripts. | Maxime Dénès | |
| 2016-12-07 | Add bat files for 8.6rc1 build. | Maxime Dénès | |
| 2016-12-07 | Add bat files for 8.6beta1 build. | Maxime Dénès | |
| 2016-12-07 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-12-02 | Merge remote-tracking branch 'github/pr/372' into v8.6 | Maxime Dénès | |
| Was PR#372: Update dev/doc/changes.txt with HintsResolveEntry changes | |||
| 2016-12-02 | Merge remote-tracking branch 'github/pr/368' into v8.6 | Maxime Dénès | |
| Was PR#368: Add example in dev/doc/changes involving Tacmach.project | |||
| 2016-12-02 | Merge remote-tracking branch 'github/pr/369' into v8.6 | Maxime Dénès | |
| Was PR#369: Make a note about wit_constr and Constrarg in dev/doc/changes | |||
| 2016-12-02 | Merge remote-tracking branch 'github/pr/371' into v8.6 | Maxime Dénès | |
| Was PR#371: Update dev/doc/changes with things about mem_named_context | |||
| 2016-11-30 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-11-24 | Fix some documentation typos. | Guillaume Melquiond | |
| Note: "dependant" does exist, but it is a noun and it means a person that is somehow financially dependent on someone else. | |||
| 2016-11-21 | (v8.6) Update dev/doc/changes.txt with HintsResolveEntry changes | Jason Gross | |
| 2016-11-21 | (v8.6) Update dev/doc/changes with things about mem_named_context | Jason Gross | |
| 2016-11-21 | (v8.6) Make a note about wit_constr and Constrarg in dev/doc/changes | Jason Gross | |
| 2016-11-21 | (v8.6) Add example in dev/doc/changes involving Tacmach.project | Jason Gross | |
| 2016-11-18 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-11-16 | [doc] Mention XML protocol on changes. | Emilio Jesus Gallego Arias | |
| It may be worth it, also added a note about file reorganization. | |||
| 2016-11-14 | Remove README.win until we come up with new instructions. | Maxime Dénès | |
| The recommended way to install Coq under windows is anyway to use the precompiled installer. | |||
| 2016-11-10 | Move OSX script. | Maxime Dénès | |
| 2016-11-10 | Add Michael Soegtrop's new script to build windows installer. | Maxime Dénès | |
| 2016-11-10 | Remove old windows build scripts. | Maxime Dénès | |
| 2016-11-05 | FIX: dev/include | Matej Kosik | |
| 2016-10-24 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-10-21 | Merge branch 'fixminimization' into v8.6 | Matthieu Sozeau | |
| 2016-10-21 | Remove no longer exported debug printer | Matthieu Sozeau | |
| 2016-10-20 | [search] Don't build intermediate lists in search. | Emilio Jesus Gallego Arias | |
| This patch converts the `search_*` functions to use an iter-style API. Consequently, the Search Vernac will produce a message for each search result, greatly improving roundtrip time as IDEs can effectively display the results in a streaming way. It also allows different printers to be used. I didn't observe a performance difference (as things seem to be dominated by printing and `Declaremods`). As a minor tweak, we make search with "Output Name Only" more efficient. Motivation: ----------- Currently, the main search API `Search.generic_search` is an effectful, iteration-based function: ```ocaml val generic_search : int option -> display_function -> unit ``` This type is imposed by `Declaremods`, which exposes an effectful, iteration-based API to traverse Coq library objects. The `Search.search_*` functions try to offer a more functional API by returning a list of pretty printing commands. They need to build an internal intermediate list for that purpose. However, this is a waste of time, as the destination of these lists is to be flushed out by the printer right away. | |||
| 2016-10-20 | COMMENTS: dev/doc/changes.txt | Matej Kosik | |
| 2016-10-19 | CLEANUP: rename "Nameops.lift_subscript" to "Nameops.increment_subscript". | Matej Kosik | |
| The word "increment" is more appropriate in this case than "lifting". The world "lifting", in computer science, usually denotes something else: https://en.wikipedia.org/wiki/Lambda_lifting | |||
| 2016-10-18 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-10-17 | More on making the lexer more functional (continuing b8ae2de5 and | Hugo Herbelin | |
| 8a8caba3). - Adding cLexer.current_file to the lexer state, i.e. making it a component of the type "coq_parsable" of lexer state (it was forgotten in b8ae2de5 and 8a8caba3). - Inlining save_translator/restore_translator which have now lost most of their substance. | |||
| 2016-10-08 | Merge branch 'v8.6' | Pierre-Marie Pédrot | |
| 2016-10-08 | Adding debugging printer for Genarg.ArgT.t. | Hugo Herbelin | |
| 2016-10-05 | Fix loading of debug printers. | Pierre-Marie Pédrot | |
| 2016-09-21 | Merging Stdarg and Constrarg. | Pierre-Marie Pédrot | |
| There was no reason to keep them separate since quite a long time. Historically, they were making Genarg depend or not on upper strata of the code, but since it was moved to lib/ this is not justified anymore. | |||
| 2016-09-15 | Documenting API changes. | Pierre-Marie Pédrot | |
| 2016-09-14 | Moving Ltac-specific parsing API to ltac/ folder. | Pierre-Marie Pédrot | |
| 2016-09-08 | Merge PR #244. | Pierre-Marie Pédrot | |
| 2016-08-26 | CLEANUP: removing "Termops.compact_named_context_reverse" function | Matej Kosik | |
| 2016-08-26 | CLEANUP: renaming "Printer.pr_var_decl" function to "Printer.pr_named_decl" | Matej Kosik | |
| 2016-08-26 | CLEANUP: renaming "Context.ListNamed" module to "Context.Compacted" | Matej Kosik | |
| 2016-08-25 | CLEANUP: Type alias "Context.section_context" was removed | Matej Kosik | |
| 2016-08-25 | CLEANUP: functions "Context.{Rel,Named}.Context.fold" were renamed to ↵ | Matej Kosik | |
| "Context.{Rel,Named}.fold_constr" | |||
| 2016-08-19 | Make the user_err header an optional parameter. | Emilio Jesus Gallego Arias | |
| Suggested by @ppedrot | |||
