We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d73f0d0 commit a1438ceCopy full SHA for a1438ce
2 files changed
c_files/original_paper/example3_5.c
@@ -0,0 +1,8 @@
1
+/*
2
+ * Example 3.5 from the original paper "A Flow Calculus of
3
+ * mwp-Bounds for Complexity Analysis".
4
+ */
5
+int foo(int X1, int X2){
6
+ for(int i=0; i<X3; i++)
7
+ X1 = X1 + X2;
8
+}
c_files/readme.md
@@ -39,6 +39,7 @@
39
| | `example3_2.c` | Three variables and `while` loop |
40
| | `example3_4.c` | Iteration with 5 variables, using while (W) rule |
41
| | `example3_4_loop.c` | Iteration with 5 variables, using loop (L) rule |
42
+| | `example3_5.c` | Iteration with 3 variables, where some derivation paths fail |
43
| | `example5_1.c` | Adding two variables |
44
| | `example7_10.c` | program with `if...else` and 3 variables |
45
| | `example7_11.c` | Binary operations with 4 variables |
0 commit comments