Reviewed By: mbouaziz Differential Revision: D9337572 fbshipit-source-id: f7f5f7572master
parent
eb282797ab
commit
cc18f9883d
@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Copyright (c) 2018-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
class Invariant {
|
||||
|
||||
// x is invariant
|
||||
void x_is_invariant_ok(int size) {
|
||||
int i = 0, x;
|
||||
if (size > 10) {
|
||||
x = 10;
|
||||
} else {
|
||||
x = 20;
|
||||
}
|
||||
while (i < size + x) {
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
// x shouldn't be invariant since it can have two different values
|
||||
// depending on whether the inner conditional is executed or not
|
||||
// Currently, we are getting T because of a problem in InferBo, see
|
||||
// T32798161
|
||||
void formal_not_invariant_FP(int size, int x) {
|
||||
int i = 0;
|
||||
while (i < size + x) {
|
||||
if (x > i) {
|
||||
x = 0;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
// x shouldn't be invariant since it can have two different values
|
||||
// depending on whether the inner conditional is executed or not
|
||||
// Currently, we are getting T because of a problem in InferBo, see
|
||||
// T32798161
|
||||
void local_not_invariant_FP(int size) {
|
||||
int i = 0;
|
||||
int x = 5;
|
||||
while (i < size + x) {
|
||||
if (x > i) {
|
||||
x = 0;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// m will be invariant
|
||||
void do_while_invariant(int m, int k){
|
||||
int i = 0;
|
||||
do{
|
||||
m = k;
|
||||
i++;
|
||||
}
|
||||
while (i < m);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue