aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev
Commit message (Collapse)AuthorAge
* [build] Fix checks and notes noting 4.02.1 instead of 4.02.3Gravatar Emilio Jesus Gallego Arias2018-06-11
| | | | | Bumping to 4.02.3 was decided some time ago in the WG, however a couple of places escaped updating.
* [ci] GeoCoq now depends on math-comp's ssralg.Gravatar Emilio Jesus Gallego Arias2018-06-11
|
* dev/doc/univpoly.{txt => md}, split off primitive projection infoGravatar Gaëtan Gilbert2018-06-08
|
* Merge PR #7687: [ci] [docker] Pin specific versions of OPAM CI dependencies.Gravatar Gaëtan Gilbert2018-06-08
|\
| * [ci] [docker] Pin specific versions of OPAM CI dependencies.Gravatar Emilio Jesus Gallego Arias2018-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | Packages such as `menhir` or `elpi` are fragile w.r.t. updates, so allowing a non-deterministic install in the Dockefile seems risky. We have found trouble with Menhir in the past. We thus specify a concrete version for all `CI_OPAM` packages. cc: https://github.com/AbsInt/CompCert/issues/234 We also add remove `hevea` from `apt` dependencies as it hasn't been needed since #7466 and add `texlive-science` which is needed to build the `source-doc` target due to the `textgreek` package being used.
* | Add a note about [ci skip] in CI README.Gravatar Théo Zimmermann2018-06-06
|/
* Merge PR #7717: [ci] Temporal fix for CompCertGravatar Gaëtan Gilbert2018-06-06
|\
| * [ci] Temporal fix for CompCertGravatar Emilio Jesus Gallego Arias2018-06-06
| | | | | | | | https://github.com/AbsInt/CompCert/issues/234
* | Merge PR #7099: Stronger invariants in unification signature.Gravatar Matthieu Sozeau2018-06-05
|\ \
* \ \ Merge PR #7495: Fix restrict_universe_contextGravatar Matthieu Sozeau2018-06-05
|\ \ \ | |_|/ |/| |
* | | Merge PR #7596: [ci] [windows] Use newer OCaml version.Gravatar Michael Soegtrop2018-06-04
|\ \ \
| | | * Documenting the API change.Gravatar Pierre-Marie Pédrot2018-06-04
| | | |
| | | * Adding an overlay for the Equations plugin.Gravatar Pierre-Marie Pédrot2018-06-04
| |_|/ |/| |
* | | QuickChick CIGravatar Leonidas Lampropoulos2018-06-02
| | |
* | | [ci] Expose updated `OCAMLPATH` for CI users.Gravatar Emilio Jesus Gallego Arias2018-06-02
| | | | | | | | | | | | | | | This is needed for CI packages that use `META.coq` such as in https://github.com/coq/coq/pull/7656 .
| * | [appveyor] Use OCaml version 4.06.1 in the Windows build.Gravatar Emilio Jesus Gallego Arias2018-06-02
|/ / | | | | | | | | | | We bump Windows builds to 4.06.1, IMHO it makes sense to use the latest OCaml version to build on that platform due to the support status and number of fixes.
* | [api] Move `Constrexpr` to the `interp` module.Gravatar Emilio Jesus Gallego Arias2018-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Continuing the interface cleanup we place `Constrexpr` in the internalization module, which is the one that eliminates it. This slims down `pretyping` considerably, including removing the `Univdecls` module which existed only due to bad dependency ordering in the first place. Thanks to @ Skyskimmer we also remove a duplicate `univ_decl` definition among `Misctypes` and `UState`. This is mostly a proof of concept yet as it depends on quite a few patches of the tree. For sure some tweaks will be necessary, but it should be good for review now. IMO the tree is now in a state where we can could easy eliminate more than 10 modules without any impact, IMHO this is a net saving API-wise and would help people to understand the structure of the code better.
* | [api] Remove deprecated object from `Term`Gravatar Emilio Jesus Gallego Arias2018-05-30
| | | | | | | | | | | | | | | | | | | | | | | | | | We remove most of what was deprecated in `Term`. Now, `intf` and `kernel` are almost deprecation-free, tho I am not very convinced about the whole `Term -> Constr` renaming but I'm afraid there is no way back. Inconsistencies with the constructor policy (see #6440) remain along the code-base and I'm afraid I don't see a plan to reconcile them. The `Sorts` deprecation is hard to finalize, opening `Sorts` is not a good idea as someone added a `List` module inside it.
* | Merge PR #7558: [api] Make `vernac/` self-contained.Gravatar Maxime Dénès2018-05-30
|\ \
| | * overlay triggering bug #7472 (that #7495) is supposed to fixGravatar Enrico Tassi2018-05-30
| |/ |/|
* | Merge PR #7521: Fix soundness bug with VM/native and cofixpointsGravatar Pierre-Marie Pédrot2018-05-28
|\ \
| * | Unify pre_env and envGravatar Maxime Dénès2018-05-28
| | | | | | | | | | | | | | | We now have only two notions of environments in the kernel: env and safe_env.
* | | Merge PR #7419: Remove 100 occurrences of Evd.emptyGravatar Pierre-Marie Pédrot2018-05-28
|\ \ \
| | | * [api] Make `vernac/` self-contained.Gravatar Emilio Jesus Gallego Arias2018-05-27
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We make the vernacular implementation self-contained in the `vernac/` directory. To this extent we relocate the parser, printer, and AST to the `vernac/` directory, and move a couple of hint-related types to `Hints`, where they do indeed belong. IMO this makes the code easier to understand, and provides a better modularity of the codebase as now all things under `tactics` have 0 knowledge about vernaculars. The vernacular extension machinery has also been moved to `vernac/`, this will help when #6171 [proof state cleanup] is completed along with a stronger typing for vernacular interpretation that can distinguish different types of effects vernacular commands can perform. This PR introduces some very minor source-level incompatibilities due to a different module layering [thus deprecating is not possible]. Impact should be relatively minor.
* | | Merge PR #7573: Remove unused Printer.printer_pr override mechanism.Gravatar Hugo Herbelin2018-05-27
|\ \ \
* \ \ \ Merge PR #7543: [ide] Move common protocol library to its own folder/object.Gravatar Pierre-Marie Pédrot2018-05-26
|\ \ \ \
* \ \ \ \ Merge PR #7603: Use -j 1 for high memory fiat crypto targetsGravatar Emilio Jesus Gallego Arias2018-05-26
|\ \ \ \ \ | |_|_|_|/ |/| | | |
* | | | | Merge PR #6057: Start a release process documentation.Gravatar Maxime Dénès2018-05-26
|\ \ \ \ \
| | | | | * Remove some occurrences of Evd.emptyGravatar Maxime Dénès2018-05-25
| |_|_|_|/ |/| | | | | | | | | | | | | | We address the easy ones, but they should probably be all removed.
| | * | | Use -j 1 for high memory fiat crypto targetsGravatar Gaëtan Gilbert2018-05-25
| |/ / / |/| | |
* | | | [tactics] Remove anonymous fix/cofix form.Gravatar Emilio Jesus Gallego Arias2018-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We remove the `fix N / cofix N` forms from the tactic language. This way, these tactics don't depend anymore on the proof context, in particular on the proof name, which seems like a fragile practice. Apart from the concerns wrt maintenability of proof scripts, this also helps making the "proof state" functional; as we don't have to propagate the proof name to the tactic layer.
* | | | Merge PR #7574: Improve merging and overlay documentations.Gravatar Emilio Jesus Gallego Arias2018-05-24
|\ \ \ \
| | | | * Remove the unused printer_pr mechanism.Gravatar Jim Fehrle2018-05-24
| |_|_|/ |/| | |
| * | | Complete rewrite of the documentation of overlays after Jim's additional ↵Gravatar Théo Zimmermann2018-05-24
| | | | | | | | | | | | | | | | | | | | | | | | comments. [ci skip]
| * | | Relax advice on the name of user-overlays following Gaëtan's suggestion.Gravatar Théo Zimmermann2018-05-24
| | | | | | | | | | | | | | | | [ci skip]
| * | | Improve merging and overlay documentations.Gravatar Théo Zimmermann2018-05-24
| | | | | | | | | | | | | | | | | | | | | | | | Clarification prompted by Jim Fehrle. [ci skip]
* | | | Merge PR #7177: Unifying names of "smart" combinators + adding combinators ↵Gravatar Pierre-Marie Pédrot2018-05-24
|\ \ \ \ | |/ / / |/| | | | | | | in CArray
| | | * [ide] Move common protocol library to its own folder/object.Gravatar Emilio Jesus Gallego Arias2018-05-24
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `ide` folder contains two different binaries, the language server `coqidetop` and `coqide` itself. Even if these binaries are in the same folder, the only thing they have in common is that they link to the protocol files. In the OCaml world, having "doubly" linked files in the same project is considered a bit of an ugly practice, and some build tools such as Dune disallow it.q Thus, to clean up the build, we move the common protocol files to its own library `ideprotocol`. This helps towards Dune integration and towards having an IDE standalone target, such as the one that was implemented here: https://github.com/ejgallego/coqide-exp
* | | Merge PR #7582: [ci] Build fiat-crypto targets in sequenceGravatar Emilio Jesus Gallego Arias2018-05-24
|\ \ \
| | * | Document Smart/Array changes in dev/doc/Changes.md.Gravatar Hugo Herbelin2018-05-23
| |/ / |/| |
| * | [ci] Build fiat-crypto targets in sequenceGravatar Jason Gross2018-05-22
| | | | | | | | | | | | | | | | | | This should hopefully alleviate memory problems on gitlab, by first building the `lite` targets, and then building the remaining not-that-big targets.
* | | Merge PR #7577: Fixing debugger after #6859 (loading dynlink.cma before ↵Gravatar Emilio Jesus Gallego Arias2018-05-22
|\ \ \ | |/ / |/| | | | | lib.cma).
| * | Fixing debugger after #6859 (loading dynlink.cma before lib.cma).Gravatar Hugo Herbelin2018-05-22
| | |
* | | Merge PR #7384: Split UniversesGravatar Pierre-Marie Pédrot2018-05-22
|\ \ \ | |/ / |/| |
* | | Merge PR #7324: Infrastructure for ocamldebug on the checkerGravatar Hugo Herbelin2018-05-22
|\ \ \
* \ \ \ Merge PR #7526: [circle] Use Docker image from Gitlab registry.Gravatar Gaëtan Gilbert2018-05-22
|\ \ \ \
* | | | | [stm] Make toplevels standalone executables.Gravatar Emilio Jesus Gallego Arias2018-05-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We turn coqtop "plugins" into standalone executables, which will be installed in `COQBIN` and located using the standard `PATH` mechanism. Using dynamic linking for `coqtop` customization didn't make a lot of sense, given that only one of such "plugins" could be loaded at a time. This cleans up some code and solves two problems: - `coqtop` needing to locate plugins, - dependency issues as plugins in `stm` depended on files in `toplevel`. In order to implement this, we do some minor cleanup of the toplevel API, making it functional, and implement uniform build rules. In particular: - `stm` and `toplevel` have become library-only directories, - a new directory, `topbin`, contains the new executables, - 4 new binaries have been introduced, for coqide and the stm. - we provide a common and cleaned up way to locate toplevels.
* | | | | Merge PR #7527: [windows] Don't build menhir and int anymore in the ↵Gravatar Michael Soegtrop2018-05-19
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | packaging scripts.
* \ \ \ \ \ Merge PR #7550: [CI] Fix the script used by math-classes.Gravatar Emilio Jesus Gallego Arias2018-05-18
|\ \ \ \ \ \
* \ \ \ \ \ \ Merge PR #6965: [api] Move universe syntax to `Glob_term`Gravatar Pierre-Marie Pédrot2018-05-18
|\ \ \ \ \ \ \