mirror of
https://github.com/zaphar/merkle-dag.git
synced 2025-07-23 02:59:49 -04:00
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
---- MODULE scratch ----
|
|
EXTENDS TLC, Integers
|
|
LOCAL INSTANCE Naturals
|
|
LOCAL INSTANCE Sequences
|
|
|
|
Boolean == {TRUE, FALSE}
|
|
Node == 1..10
|
|
GraphType == [Node \X Node -> Boolean]
|
|
Eval == GraphType
|
|
==== |