/** This example is to check the translation of quantified expression * into CVC theorem provers. */ #include #include $input int n; $assume (n>=0); $input int a[n]; $input int b[n]; void main(){ $assume($forall {int i | i >=0 && i0); $assume($forall {int i | i >=0 && i= 0 && i < n} a[i]) && ($forall {int i | i >=0 && i < n} b[i]) ); }