|
From: Luc G. <gir...@ic...> - 2003-10-27 23:03:41
|
Dear all,
I tried to run a simulation over a parameter space with two
synchronized variables (as described in the documentation, except that
I have a nested loop):
runs: 1
s {
start: 1
end: 3
incr: 1
{
runs: 1
x {
set_list: 4 5 6
}
y {
set_list: 7 8 9
}
}
}
Unfortunately, it results in only 6 runs and with illogical values
after at the beginning of the second main loop:
run s x y
1 1 4 7
2 1 5 8
3 1 6 9
4 2 4 9 <- Ooops...
5 3 5 7
6 3 6 8
instead of the expected:
run s x y
1 1 4 7
2 1 5 8
3 1 6 9
4 2 4 7
5 2 5 8
6 2 6 9
7 3 4 7
8 3 5 8
9 3 6 9
I tried to locate the problem in the source code, but I somehow got
lost... Any help would be appreciated!
=20
Cheers
Luc
--=20
Luc Girardin, Swiss Federal Institute of Technology (ETH)
Center for Comparative and International Studies (CIS)
Seilergraben 49, CH-8092 Z=FCrich Switzerland
|