Hello.

Anyone seen anything like this? I couldn't find similar stuff, although I would
like to. I included a formula (ORDs) with three sample and simpler parameter
files and each parameter file has a corresponding small formula, to offer a not
even slightly complete explanation about what is happening here.
The formula ORDs01 corresponds to parameter file ORDs01 with real(p5) set to 3,
formula ORDs02 corresponds to parameter file ORDs02 with real(p5) set to 3 also,
while the formula ORDs03 creates the same image as parameter ORDs03.

Thank you.

---parameters-start----------------------------------------
ORDs01 {
  reset=2099 type=formula formulaname=ORDs
  center-mag=-0.5/0/0.6666667/0.75 params=0/0/0/0/1/0/1/0/7/0
  float=y maxiter=200 inside=0 periodicity=0 }
ORDs02 {
  reset=2099 type=formula formulaname=ORDs
  center-mag=0.5/0/0.6666667/0.75 params=0/0/0/0/-1/0/1/0/10/0
  float=y maxiter=200 inside=0 periodicity=0 }
ORDs03 {
  reset=2099 type=formula formulaname=ORDs
  center-mag=-0.5/0/0.6666667/0.75 params=0/0/0/0/1/0/-1.5/0/1/0
  float=y maxiter=200 inside=0 periodicity=0 }

frm:ORDs {

; p3 = 1.0 +0.0i
; p4 = 1.0 +0.0i
; real(p5) = 8

  c = z0 = pixel, z = 0, c_param = p3, z_param = p4
  level_n = 0, level = real(p5) ; integer > 0
  bailout = 100
  :

  IF (level_n >= 0)
    z0 = z0*z0 +c *c_param
    level_n = level_n +1
    c = z0
    IF (level_n == level)
      level_n = -1
      z0 = c *z_param
    ENDIF
  ELSE
    z = z*z +z0
  ENDIF

  |z| <= bailout
}
---parameters-end------------------------------------------
---formulae-start------------------------------------------
ORDs01 {
  c = pixel, z = 0, bailout = 100
  c = c^8 +c^7 *4 +c^6 *8 +c^5 *10 +c^4 *9 +c^3 *6 +c^2 *3 +c
  :
  z = z*z +c
  |z| <= bailout
}
ORDs02 {
  c = pixel, z = 0, bailout = 100
  c = c^8 -c^7 *4 +c^6 *4 +c^5 *2 -c^4 *5 +c^3 *2 +c^2 -c
  :
  z = z*z +c
  |z| <= bailout
}
ORDs03 {
  c = pixel, z = 0, bailout = 100
  c = (c^2 +c) *-1.5
  :
  z = z*z +c
  |z| <= bailout
}
---formulae-end--------------------------------------------