- Aug 04, 2014
-
-
Robbert Krebbers authored
-
- Jul 10, 2014
-
-
Robbert Krebbers authored
-
- Jul 04, 2014
-
-
Robbert Krebbers authored
-
- Jun 25, 2014
-
-
Robbert Krebbers authored
* Equality comparison of NULL and non NULL pointers should be defined * Pointer comparisons, casts, and truth should only be defined for pointers that are alive * Treat dead pointers as indeterminate values in refinements. The proofs that all operations preserve refinement indicate that dead pointers can be indeed by replaced by anything without affecting the program's behavior.
-
Robbert Krebbers authored
-
- Jun 23, 2014
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Jun 17, 2014
-
-
Robbert Krebbers authored
variables.
-
- Jun 16, 2014
-
-
Robbert Krebbers authored
Major changes: * Make void a base type, and include a proper void base value. This is necessary because expressions (free, functions without return value) can yield a void. We now also allow void casts conforming to the C standard. * Various missing lemmas about typing, weakening, decidability, ... * The operations "free" and "alloc" now operate on l-values instead of r-values. This removes some duplication. * Improve notations of expressions and statements. Change the presence of the operators conforming to the C standard. Small changes: * Use the classes "Typed" and "TypeCheck" for validity of indexes in memory. This gives more uniform notations. * New tactic "typed_inversion" performs inversion on an inductive predicate of type "Typed" and folds the premises. * Remove a horrible hack in the definitions of the classes "FMap", "MBind", "OMap", "Alter" that was used to let "simpl" behave better. Instead, we have defined a tactic "csimpl" that folds the results after performing an ordinary "simpl". * Fast operation to remove duplicates from lists using hashsets. * Make various type constructors (mainly finite map implementations) universe polymorphic by packing them into an inductive. This way, the whole C syntax can live in type, avoiding the need for (slow) universe checks.
-
- Jun 06, 2014
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
* Remove generic path_typed instance for lists. For the zippers in the operational semantics, it goes the other way around. * Remove constructor lemmas for values/memory_trees and use a generic tactic instead. This tactic uses the standard constructor tactic, but folds the type classes afterward.
-
- Jun 05, 2014
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
Major changes: * A data structure to collect locked addresses in memory. * Operations to lock and unlock addresses. * Remove [ctree_Forall] and express it using [Forall] and [ctree_flatten]. This saves a lot of lines of code. * Add a [void] value. This value cannot be typed, but will be used as a dummy return value for functions with return type [void]. Minor changes: * Various deciders in preparation of the executable semantics. * Improve naming and notations. * Remove obsolete stuff.
-
Robbert Krebbers authored
Conflicts: collections.v
-
- May 24, 2014
-
-
Robbert Krebbers authored
-
- May 22, 2014
-
-
Robbert Krebbers authored
* Parametrize refinements with memories. This way, refinements imply typing, for example [w1 ⊑{Γ,f@m1↦m2} w2 : τ → (Γ,m1) ⊢ w1 : τ]. This relieves us from various hacks. * Use addresses instead of index/references pairs for lookup and alter operations on memories. * Prove various disjointness properties.
-
- May 04, 2014
-
-
Robbert Krebbers authored
-
- May 02, 2014
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Sep 09, 2013
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Aug 27, 2013
-
-
Robbert Krebbers authored
-
- Aug 21, 2013
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Aug 15, 2013
-
-
Robbert Krebbers authored
-
- Aug 14, 2013
-
-
Robbert Krebbers authored
-
- Aug 12, 2013
-
-
Robbert Krebbers authored
This commit includes the following changes: * More theorems about pre-, partial and total orders. * Define the lexicographic order on various commonly used data types. * Mergesort and its correctness proof. * Implement finite maps and sets using ordered association lists.
-
- Jun 24, 2013
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- Jun 17, 2013
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- May 21, 2013
-
-
Robbert Krebbers authored
-
- May 15, 2013
-
-
Robbert Krebbers authored
-
- May 12, 2013
-
-
Robbert Krebbers authored
-
- May 11, 2013
-
-
Robbert Krebbers authored
-
Robbert Krebbers authored
-
- May 07, 2013
-
-
Robbert Krebbers authored
The refactoring includes: * Use infix notations for the various list relations * More consistent naming * Put lemmas on one line whenever possible * Change proofs into one-liners when possible * Make better use of the "Implicit Types" command * Improve the order of the list module by placing all definitions at the start, then the proofs, and finally the tactics. Besides, there is some new machinery for proofs by reflection on lists. It is used for a decision procedure for permutations and list containment.
-