summaryrefslogtreecommitdiff
path: root/sched/test/ram.mj
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-04 23:47:56 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-04 23:47:56 +0100
commit7950298bf80fd1d1f311e7bd4f75b442df7c679c (patch)
treeefb935d351a6dd798795641461f63cf17ca9f390 /sched/test/ram.mj
parent62705818bf8227a9a35fff6879306c1b861e9dfd (diff)
downloadSystDigit-Projet-7950298bf80fd1d1f311e7bd4f75b442df7c679c.tar.gz
SystDigit-Projet-7950298bf80fd1d1f311e7bd4f75b442df7c679c.zip
C simulator quite completed.
Diffstat (limited to 'sched/test/ram.mj')
-rw-r--r--sched/test/ram.mj2
1 files changed, 1 insertions, 1 deletions
diff --git a/sched/test/ram.mj b/sched/test/ram.mj
index 7c4d1ed..5bd4f29 100644
--- a/sched/test/ram.mj
+++ b/sched/test/ram.mj
@@ -5,7 +5,7 @@ or_n<n>(a:[n],b:[n]) = (o:[n]) where
if n = 0 then
o = []
else
- o = (a[0] and b[0]).(or_n<n-1>(a[1..], b[1..]))
+ o = (a[0] or b[0]).(or_n<n-1>(a[1..], b[1..]))
end if
end where