- 31 Jan, 2017 1 commit
-
-
Ralf Jung authored
-
- 09 Dec, 2016 1 commit
-
-
Ralf Jung authored
-
- 06 Dec, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 23 Nov, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 13 Oct, 2016 1 commit
-
-
Ralf Jung authored
-
- 20 Sep, 2016 2 commits
-
-
Robbert Krebbers authored
This also solves a name clash with the extension order of CMRAs.
-
Robbert Krebbers authored
-
- 24 Aug, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 08 Aug, 2016 1 commit
-
-
Ralf Jung authored
With Coq 8.6, you can no longer have intro patterns that give more names than the constructor has. Also, patterns with too few names are now interpreted as filling up with "?", rather than putting the unnamed parts into the goal again. Furthermore, it seems the behavior of "simplify_eq/=" changed, I guess hypotheses are considered in different order now. I managed to work around this, but it all seem kind of fragile. The next compilation failure is an "Anyomaly: ... Please report", so that's what I will do.
-
- 27 Jul, 2016 2 commits
-
-
Robbert Krebbers authored
This reverts commit 20b4ae55bdf00edb751ccdab3eb876cb9b13c99f, which does not seem to work with Coq 8.5pl2 (I accidentally tested with 8.5pl1).
-
Robbert Krebbers authored
This makes type checking more directed, and somewhat more predictable. On the downside, it makes it impossible to declare the singleton on lists as an instance of SingletonM and the insert and alter operations on functions as instances of Alter and Insert. However, these were not used often anyway.
-
- 30 Jun, 2016 1 commit
-
-
Jacques-Henri Jourdan authored
-
- 27 May, 2016 2 commits
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- 22 May, 2016 2 commits
-
-
Robbert Krebbers authored
Initial commit by Amin Timany.
-
Robbert Krebbers authored
-
- 30 Mar, 2016 1 commit
-
-
Robbert Krebbers authored
This seems to shorten type class search.
-
- 21 Mar, 2016 1 commit
-
-
Robbert Krebbers authored
Also, slightly reorganize.
-
- 04 Mar, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 03 Mar, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 20 Feb, 2016 2 commits
- 17 Feb, 2016 2 commits
-
-
Robbert Krebbers authored
simplify_equality => simplify_eq simplify_equality' => simplify_eq/= simplify_map_equality => simplify_map_eq simplify_map_equality' => simplify_map_eq/= simplify_option_equality => simplify_option_eq simplify_list_equality => simplify_list_eq f_equal' => f_equal/= The /= suffixes (meaning: do simpl) are inspired by ssreflect.
-
Robbert Krebbers authored
-
- 13 Feb, 2016 2 commits
-
-
Robbert Krebbers authored
Also, make our redefinition of done more robust under different orders of Importing modules.
-
Robbert Krebbers authored
Since Coq 8.4 did not backtrack on eauto premises, we used to ensure that hints like Hint Extern 0 (?x ≡{_}≡ ?y) => reflexivity. were not used for goals involving evars by writing ?x ≡{_}≡ ?y instead of _ ≡{_}≡ _. This seems to be a legacy issue that no longer applies to Coq 8.5, so I have removed these restrictions making these hints thus more powerful.
-
- 11 Feb, 2016 1 commit
-
-
Robbert Krebbers authored
Also do some minor clean up.
-
- 20 Jan, 2016 1 commit
-
-
Robbert Krebbers authored
And use more uniform variable names.
-
- 12 Jan, 2016 1 commit
-
-
Robbert Krebbers authored
-
- 15 Dec, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 18 Nov, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 16 Nov, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 11 Nov, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 01 Feb, 2017 1 commit
-
-
Robbert Krebbers authored
The port makes the following notable changes: * The carrier types of separation algebras and integer environments are no longer in Set. Now they have a type at a fixed type level above Set. This both works better in 8.5 and makes the formalization more general. I have tried putting them at polymorphic type levels, but that increased the compilation time by an order of magnitude. * I am using a custom f_equal tactic written in Ltac to circumvent bug #4069. That bug has been fixed, so this custom tactic can be removed when the next beta of 8.5 is out.
-
- 04 Jun, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 25 Feb, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 16 Feb, 2015 1 commit
-
-
Robbert Krebbers authored
-
- 08 Feb, 2015 2 commits
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
Important changes in the core semantics: * Types extended with function types. Since function types are a special kind of pointer types, types now have an additional mutual part called "ptr_type". * Pointers extended with function pointers. Theses are just names that refer to an actual function in the function environment. * Typing environments extended to assign argument and return types to function names. Before we used a separate environment for these, but since the argument and return types are already needed to type function pointers, this environment would appear in pretty much every typing judgment. As a side-effect, the frontend has been rewritten entirely. The important changes are: * Type checking of expressions is more involved: there is a special kind of expression type corresponding to a function designator. * To handle things like block scoped extern function, more state-fullness was needed. To prepare for future extensions, the entire frontend now uses a state monad.
-
- 29 Jan, 2015 1 commit
-
-
Robbert Krebbers authored
-