blob: 17dcfe864a5891e2c061b1d7022c73fa7ebad4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
default Order dec
$include <prelude.sail>
$option -smt_ignore_overflow
// CVC4 Really doesn't like it when this isn't 64
$option -smt_int_size 64
$property
function prop forall 'n 'm, 0 <= 'n <= 128 & 0 <= 'm <= 64. (x: int('m), y: int('n), z: int) -> bool = {
let lo = -1000;
let hi = 1000;
if lo >= z | z >= hi then {
return(true)
};
let mul_assoc = (x * y) * z == x * (y * z);
mul_assoc
}
|