Automatically check programs for equivalence

llrêve

Developed and maintained as part of the IMPROVE project by Mattias Ulbrich, Vladimir Klebanov and Moritz Kiefer.


(examples suffixed with ! contain programs that do not behave equally)

or enter two programs:

x
 
1
extern int __mark(int);
2
int f(int t, int c, int r) {
3
  int x = 0;
4
5
  if (0 < t) {
6
      while(__mark(42) & (0 < c)) {
7
          x++;
8
          c--;
9
      }
10
  } else {
11
      __mark(23);
12
  }
13
14
  while(__mark(13) & (r > 0)) {
15
      x+=2;
16
      r--;
17
  }
18
19
  return x;
20
}
21
19
 
1
extern int __mark(int);
2
int f(int t, int c, int r) {
3
  int x = 0;
4
5
  while(__mark(23) & __mark(42) & (0 < c)) {
6
      if (0 < t) {
7
          x++;
8
      }
9
      c--;
10
  }
11
12
  while(__mark(13) & (r > 0)) {
13
      x+=2;
14
      r--;
15
  }
16
17
  return x;
18
}
19

Choose a solver



Your programs are sent to the server. Please be a little patient for the answer…
Checking

llrêve checks automatically whether two C programs behave equally. For details take a look at the Usage page.