source: CIVL/examples/bench/binaryGuards.cvl@ 2430bf1

1.23 2.0 main test-branch
Last change on this file since 2430bf1 was 2430bf1, checked in by Manchun Zheng <zmanchun@…>, 10 years ago

fixed parameters

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@3361 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 131 bytes
Line 
1$input int N=10;
2
3int main(){
4 int a=0;
5
6 for(int i=0; i<N; i++){
7 if((a*9-N+4/6)<N)
8 a+=i;
9 else
10 a-=i;
11 }
12}
Note: See TracBrowser for help on using the repository browser.