Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AVANZINI Martin
ecoimp
Commits
6173cd3f
Commit
6173cd3f
authored
Aug 05, 2020
by
AVANZINI Martin
Browse files
removed superfluous examples
parent
93908d6a
Changes
4
Hide whitespace changes
Inline
Side-by-side
examples/NCH-18/linear/C4B_t15.imp
View file @
6173cd3f
...
...
@@ -3,7 +3,7 @@
def f():
var x, y, t, r
assume y >= 0
while x > y:
while
[y >= 0]
x > y:
x = x - y
x = x - 1
t = y
...
...
examples/NCH-18/linear/C4B_t15_2.imp
deleted
100644 → 0
View file @
93908d6a
# t15 in C4B figure 8
def f():
var x, y, t, r
assume y >= 0
while [y >= 0] x > y:
x = x - y
x = x - 1
t = y
while t > 0:
r = unif(0,1)
t = t - r
tick 1
tick 1
examples/NCH-18/linear/C4B_t30.imp
View file @
6173cd3f
...
...
@@ -2,7 +2,7 @@
def f():
var x, y, t, r
while x > 0:
while
[y >= -1]
x > 0:
r = unif(1, 3)
x = x - r
t = x
...
...
examples/NCH-18/linear/C4B_t30_2.imp
deleted
100644 → 0
View file @
93908d6a
# t30 in C4B figure 8
def f():
var x, y, t, r
while [y >= -1] x > 0:
r = unif(1, 3)
x = x - r
t = x
x = y
y = t
tick 1
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment