summaryrefslogtreecommitdiff
path: root/examples/gcd_nd.c
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2014-04-30 17:19:08 +0200
committerAlex AUVOLAT <alex.auvolat@ens.fr>2014-04-30 17:19:08 +0200
commitbcde99fbe99174a094f38fdda70ad69d65a423f4 (patch)
tree21e16494aba19c4a63d55eba877abfe7fe5d8e80 /examples/gcd_nd.c
downloadSemVerif-Projet-bcde99fbe99174a094f38fdda70ad69d65a423f4.tar.gz
SemVerif-Projet-bcde99fbe99174a094f38fdda70ad69d65a423f4.zip
Fist commit (WIP)
Diffstat (limited to 'examples/gcd_nd.c')
-rw-r--r--examples/gcd_nd.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/gcd_nd.c b/examples/gcd_nd.c
new file mode 100644
index 0000000..260af41
--- /dev/null
+++ b/examples/gcd_nd.c
@@ -0,0 +1,15 @@
+a = rand(5,15);
+b = rand(3,8);
+
+if (a < 0) a = -a;
+if (b < 0) b = -b;
+while (b > 0) { // try changing this to b >= 0
+ tmp = b;
+ b = a % b;
+ a = tmp;
+ }
+assert (b==0); // should be true
+//assert (a>6); // try uncommenting this line
+tmp = 0;
+print (a);
+