-
Notifications
You must be signed in to change notification settings - Fork 161
Closed
Labels
Description
We can map constructors whose arguments are cells to structure instead of inductive, since in this case the cell names give reasonable and unique names for fields. For example:
<generatedTop>
<k></k>
<generatedCounter></generatedCounter>
</generatedTop>can become
structure SortGeneratedTopCell where
«<generatedTop>» :: (k : SortK) (generatedCounter : SortGeneratedCounterCell)or
structure SortGeneratedTopCell where
mk :: (k : SortK) (generatedCounter : SortGeneratedCounterCell)or simply
structure SortGeneratedTopCell where
k : SortK
generatedCounter : SortGeneratedCounterCellReactions are currently unavailable