| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-02-15 | Adding a test for variance subtyping in the module system. | Pierre-Marie Pédrot | |
| 2018-02-15 | Adding a sanity check on inductive variance subtyping. | Pierre-Marie Pédrot | |
| 2018-02-15 | Merge PR #1073: new quick2vo target: like vio2vo, but smarter | Maxime Dénès | |
| 2018-02-15 | disable tests: vio2vo is broken in Windows | Ralf Jung | |
| 2018-02-15 | also test vio2vo | Ralf Jung | |
| 2018-02-15 | test "make quick2vo" | Ralf Jung | |
| 2018-02-15 | new quick2vo target: like vio2vo, but smarter | Ralf Jung | |
| 2018-02-15 | Merge PR #6741: coq_makefile: Support "" as the prefix in _CoqProject | Maxime Dénès | |
| 2018-02-15 | coq_makefile: Support "" as the prefix in _CoqProject | Joachim Breitner | |
| This fixes #6350 (and even comes with a test case). Refering to other directories as `-R … ""` is maybe not best practice, but some people out there do it, so as long as it does not cause too much trouble, we can continue to support it. | |||
| 2018-02-15 | Merge PR #6760: CHANGES for 8.7.2. | Maxime Dénès | |
| 2018-02-14 | CHANGES for 8.7.2. | Théo Zimmermann | |
| 2018-02-14 | Merge PR #6742: Add CHANGES entry for #1047 (universe instance on Type notation) | Maxime Dénès | |
| 2018-02-14 | Merge PR #6713: Fix #6677: Critical bug with VM and universes | Maxime Dénès | |
| 2018-02-13 | Add CHANGES entry for #1047 | Tej Chajed | |
| 2018-02-13 | Merge PR #6693: [toplevel] Refactor command line argument handling. | Maxime Dénès | |
| 2018-02-13 | Merge PR #6702: [vernac] [minor] Move print effects to top-level caller. | Maxime Dénès | |
| 2018-02-13 | Merge PR #6711: [toplevel] Disable error resiliency in `-quick` mode. | Maxime Dénès | |
| 2018-02-13 | Merge PR #6704: Fix coq_makefile not passing -R options to coqdoc, breaking ↵ | Maxime Dénès | |
| links (#6697) | |||
| 2018-02-13 | Merge PR #6738: CHANGES for universe variance | Maxime Dénès | |
| 2018-02-12 | Merge PR #6565: [Backport script] Check .mli files are not changed. | Maxime Dénès | |
| 2018-02-12 | Merge PR #1082: Fixing Print for inductive types with let-in in parameters | Maxime Dénès | |
| 2018-02-12 | CHANGES for universe variance | Gaëtan Gilbert | |
| 2018-02-12 | Add test case for #6677. | Maxime Dénès | |
| 2018-02-12 | Merge PR #6262: [error] Replace msg_error by a proper exception. | Maxime Dénès | |
| 2018-02-12 | Merge PR #1047: Support universe instances on the literal Type | Maxime Dénès | |
| 2018-02-12 | Merge PR #6128: Simplification: cumulativity information is variance ↵ | Maxime Dénès | |
| information. | |||
| 2018-02-12 | Merge PR #6729: [nativecomp] Remove ad-hoc handling of Dynlink exception. | Maxime Dénès | |
| 2018-02-12 | Merge PR #6418: More detailed error messages for Canonical Structure, #6398 | Maxime Dénès | |
| 2018-02-12 | Merge PR #6139: Make list functions returning sumbools transparent | Maxime Dénès | |
| 2018-02-12 | Merge PR #6718: Fix redirection to stderr in lint-repository error message. | Maxime Dénès | |
| 2018-02-12 | Merge PR #6708: Mention -quiet flag for Fail | Maxime Dénès | |
| 2018-02-12 | Merge PR #6706: ci-common: guess CI_BRANCH for local builds | Maxime Dénès | |
| 2018-02-12 | Merge PR #6651: Use r.(p) syntax to print primitive projections. | Maxime Dénès | |
| 2018-02-12 | Merge PR #6674: Delay computation of lifts in the reduction machine. | Maxime Dénès | |
| 2018-02-12 | Fix #6677: Critical bug with VM and universes | Maxime Dénès | |
| This bug was present since the first patch adding universe polymorphism handling in the VM (Coq 8.5). Note that unsoundness can probably be observed even without universe polymorphism. | |||
| 2018-02-11 | inferCumulativity: add comment to explain [if not is_arity]. | Gaëtan Gilbert | |
| 2018-02-11 | Documentation for cumulative inductive variance. | Gaëtan Gilbert | |
| 2018-02-11 | Print inductive cumulativity info in About. | Gaëtan Gilbert | |
| 2018-02-11 | Universe instance printer: add optional variance argument. | Gaëtan Gilbert | |
| 2018-02-11 | Use specialized function for inductive subtyping inference. | Gaëtan Gilbert | |
| This ensures by construction that we never infer constraints outside the variance model. | |||
| 2018-02-10 | Inference of inductive subtyping does not need an evar map. | Gaëtan Gilbert | |
| 2018-02-10 | Simplification: cumulativity information is variance information. | Gaëtan Gilbert | |
| Since cumulativity of an inductive type is the universe constraints which make a term convertible with its universe-renamed copy, the only constraints we can get are between a universe and its copy. As such we do not need to be able to represent arbitrary constraints between universes and copied universes in a double-sized ucontext, instead we can just keep around an array describing whether a bound universe is covariant, invariant or irrelevant (CIC has no contravariant conversion rule). Printing is fairly obtuse and should be improved: when we print the CumulativityInfo we add marks to the universes of the instance: = for invariant, + for covariant and * for irrelevant. ie Record Foo@{i j k} := { foo : Type@{i} -> Type@{j} }. Print Foo. gives Cumulative Record Foo : Type@{max(i+1, j+1)} := Build_Foo { foo : Type@{i} -> Type@{j} } (* =i +j *k |= *) | |||
| 2018-02-10 | [get_cumulativity_constraints] allowing further code sharing. | Gaëtan Gilbert | |
| 2018-02-10 | Factorize code for comparing maybe-cumulative inductives. | Gaëtan Gilbert | |
| The part in Reduction should be semantics preserving, but Reductionops only tried cumulativity if equality fails. This is probably wrong so I changed it. | |||
| 2018-02-10 | Fix typo in Univ.CumulativityInfo | Gaëtan Gilbert | |
| 2018-02-09 | [vernac] Fix outdated comment. | Emilio Jesus Gallego Arias | |
| 2018-02-09 | [nit] Remove some unnecessary global `open Feedback` | Emilio Jesus Gallego Arias | |
| 2018-02-09 | [vernac] [minor] Move print effects to top-level caller. | Emilio Jesus Gallego Arias | |
| We remove many individual calls to `msg_notice` in the print vernacular dispatcher in favor of a single, top-level calls. This is a minor refactoring but will help in handling `Print Foo` more uniformly. | |||
| 2018-02-09 | [error] Replace msg_error by a proper exception. | Emilio Jesus Gallego Arias | |
| The current error mechanism in the core part of Coq is 100% exception based; there was some confusion in the past as to whether raising and exception could be replace with `Feedback.msg_error`. As of today, this is not the case [due to some issues in the layer that generates error feedbacks in the STM] so all cases of `msg_error` must raise an exception of print at a different level [for now]. | |||
| 2018-02-09 | [nativecomp] Remove ad-hoc handling of Dynlink exception. | Emilio Jesus Gallego Arias | |
| Instead, we properly register a printer for such exception and update the code. | |||
