merkle-dag/tla/scratch.tla

10 lines
197 B
Plaintext
Raw Normal View History

2022-11-26 18:13:23 -05:00
---- MODULE scratch ----
EXTENDS TLC, Integers
LOCAL INSTANCE Naturals
LOCAL INSTANCE Sequences
Boolean == {TRUE, FALSE}
Node == 1..10
GraphType == [Node \X Node -> Boolean]
Eval == GraphType
====