Algorithm 1 MFMC algorithm to rebuilt a set of size p of T–length artificial trajectories from a sample of n one-step transitions. |
|
Input:
n, h(., .),x0, Δ(., .),T,p
|
Let
denote the current set of not yet used one-step transitions in
n; Initially, |
←
n; |
for
i = 1 to p (extract an artificial trajectory) do
|
t ← 0; |
; |
while
t < T
do
|
; |
; |
← lowest index in
n of the transitions that belong to
; |
t ← t + 1; |
; |
; \\ do not re-use transitions
|
end while
|
end for |
Return the set of indices
. |
|