Skip to content
Snippets Groups Projects
Commit 7266d16b authored by Ralf Jung's avatar Ralf Jung
Browse files

turn canonical structures that don't have any instances into plain records

parent d350e4f6
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ From algebra Require Export cmra.
(** * Functors from COFE to CMRA *)
(* TODO RJ: Maybe find a better name for this? It is not PL-specific any more. *)
Structure iFunctor := IFunctor {
Record iFunctor := IFunctor {
ifunctor_car :> cofeT cmraT;
ifunctor_map {A B} (f : A -n> B) : ifunctor_car A -n> ifunctor_car B;
ifunctor_map_ne {A B} n : Proper (dist n ==> dist n) (@ifunctor_map A B);
......
......@@ -7,7 +7,7 @@ Local Arguments unit _ _ !_ /.
(** * Definition of STSs *)
Module sts.
Structure stsT := STS {
Record stsT := STS {
state : Type;
token : Type;
prim_step : relation state;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment