Handbook
Glossary
count-iterations ( z max-iterations step-quot test-quot -- #iters )
Vocabulary
benchmark
.
mandel
Inputs
z
an
object
max-iterations
an
object
step-quot
an
object
test-quot
an
object
Outputs
#iters
an
object
Definition
USING:
kernel
math
;
IN:
benchmark.mandel
:
count-iterations
( z max-iterations step-quot test-quot -- #iters )
[
[
[
drop
]
]
dip
[
dup
]
compose
compose
]
dip
compose
find-last-integer
nip
;
inline