Files
why3/examples/logic/simple.why
2018-06-15 16:45:58 +02:00

11 lines
148 B
Plaintext

theory T
use real.Real
use real.MinMax
goal g: forall e p: real.
(2.0 * e + p + max e p) / 4.0 = max ((e+p)/2.0) ((3.0*e+p)/4.0)
end