Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generic converters produce internal errors #3799

Closed
Araq opened this issue Jan 30, 2016 · 0 comments
Closed

Generic converters produce internal errors #3799

Araq opened this issue Jan 30, 2016 · 0 comments

Comments

@Araq
Copy link
Member

Araq commented Jan 30, 2016

import macros

const nmax = 500

type
  Complex*[T] = object
    re*: T
    im*: T

converter toComplex*[T](x: tuple[re, im: T]): Complex[T] =
  result.re = x.re
  result.im = x.im


proc julia*[T](z0, c: Complex[T], er2: T, nmax: int): int =
  result = 0
  var z = z0
  var sre = z0.re * z0.re
  var sim = z0.im * z0.im
  while (result < nmax) and (sre + sim < er2):
    z.im = z.re * z.im
    z.im = z.im + z.im
    z.im = z.im + c.im
    z.re = sre - sim + c.re
    sre = z.re * z.re
    sim = z.im * z.im
    inc result

template dendriteFractal*[T](z0: Complex[T], er2: T, nmax: int): int =
  julia(z0, (T(0.0), T(1.0)), er2, nmax)

iterator stepIt[T](start, step: T, iterations: int): T =
  for i in 0 .. iterations:
    yield start + T(i) * step


let c = (0.36237, 0.32)
for y in stepIt(2.0, -0.0375, 107):
  var row = ""
  for x in stepIt(-2.0, 0.025, 160):
    #let n = julia((x, y), c, 4.0, nmax)         ### this works
    let n = dendriteFractal((x, y), 4.0, nmax)
    if n < nmax:
      row.add($(n mod 10))
    else:
      row.add(' ')
  echo row
@Araq Araq closed this as completed in a2db3c2 Jan 30, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant