mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
10 lines
87 B
Plaintext
10 lines
87 B
Plaintext
theory State
|
|
|
|
use export map.Map
|
|
|
|
type id = Id int
|
|
type state = map id int
|
|
|
|
end
|
|
|