Merge branch 'knuth-bubble-sort' into 'master'
[why3.git] / examples / bts / remove_unused_remove_cte.mlw
blob1536fba311e078225b9265f658d0db24353b1654
2 use int.Int
4 constant x : int
6 axiom x_spec: x >= 42
8 meta "remove_unused:dependency" axiom x_spec, constant x
10 constant y : int 
12 axiom y_spec: y >= 31
14 meta "remove_unused:dependency" axiom y_spec, constant y
15 meta "remove_unused:remove_constant" constant y
17 constant z : int 
19 meta "remove_unused:remove_constant" constant z
21 goal g : forall a. a + 8 < 50