summaryrefslogtreecommitdiff
path: root/Test/AbsHoudini/quant1.bpl
blob: d4f2b76b7bacd407483058739dfe9d8c0662772c (plain)
1
2
3
4
5
6
7
8
9
// RUN: %boogie -noinfer -contractInfer -printAssignment -inlineDepth:1 -abstractHoudini:HoudiniConst -z3opt:MBQI=true "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
function {:existential true} {:absdomain "IA[Intervals]"} b1(x: int) : bool;

procedure foo ()
{
  assert (forall x: int :: (0 <= x && x <= 2) ==> b1(x));
}