ivy/test/big.ivy

20 строки
185 B
Plaintext
Исходник Обычный вид История

2016-09-25 09:52:06 +03:00
#lang ivy1.6
type t
interpret t -> bv[16]
relation r(X:t)
action a = {
r(X) := false
}
2016-09-26 20:54:30 +03:00
action b(x:t) = {
r(x) := true
}
action c(x:t) returns (y:bool) = {
y := r(x)
}