net.eduvax.grant.tasklets.fractal
Class Mandelbrot

java.lang.Object
  extended by net.eduvax.grant.core.AbstractTasklet
      extended by net.eduvax.grant.tasklets.fractal.Mandelbrot
All Implemented Interfaces:
java.lang.Runnable, Tasklet

public class Mandelbrot
extends AbstractTasklet

Mandelbrot set computation.


Field Summary
private  double maxIter
           
private  double step
           
private  double xstart
           
private  double xstop
           
private  double ystart
           
private  double ystop
           
 
Fields inherited from class net.eduvax.grant.core.AbstractTasklet
context, exitCode
 
Constructor Summary
Mandelbrot()
           
 
Method Summary
private  void computeAll()
           
private  int computePoint(double x, double y)
           
 void run()
           
private  void schedule(double step)
           
 
Methods inherited from class net.eduvax.grant.core.AbstractTasklet
getCr, setContext
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

xstart

private double xstart

xstop

private double xstop

ystart

private double ystart

ystop

private double ystop

step

private double step

maxIter

private double maxIter
Constructor Detail

Mandelbrot

public Mandelbrot()
Method Detail

computePoint

private int computePoint(double x,
                         double y)

computeAll

private void computeAll()

schedule

private void schedule(double step)

run

public void run()