ch.epfl.lis.sde
Class SdeSettings

java.lang.Object
  extended by ch.epfl.lis.sde.SdeSettings

public class SdeSettings
extends java.lang.Object

Offers global parameters (settings) and functions used by the classes of the SDE package.

Author:
Thomas Schaffter (firstname.name@gmail.com)

Constructor Summary
SdeSettings()
          Default constructor
 
Method Summary
 double getDt()
           
static SdeSettings getInstance()
          Get SDESettngs instance
 double getMaxt()
           
 int getMultiplier()
           
 cern.jet.random.Normal getNormalDistribution()
           
 int getSeed()
           
 void initializeRNG()
          Initialize the random number generator with the specified seed.
 void setDt(double dt)
           
 void setMaxt(double T)
           
 void setMultiplier(int multiplier)
           
 void setNormalDistribution(cern.jet.random.Normal normalDistribution)
           
 void setSeed(int seed)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SdeSettings

public SdeSettings()
Default constructor

Method Detail

getInstance

public static SdeSettings getInstance()
Get SDESettngs instance


initializeRNG

public void initializeRNG()
Initialize the random number generator with the specified seed.


setDt

public void setDt(double dt)

getDt

public double getDt()

setMultiplier

public void setMultiplier(int multiplier)

getMultiplier

public int getMultiplier()

setMaxt

public void setMaxt(double T)

getMaxt

public double getMaxt()

setSeed

public void setSeed(int seed)

getSeed

public int getSeed()

setNormalDistribution

public void setNormalDistribution(cern.jet.random.Normal normalDistribution)

getNormalDistribution

public cern.jet.random.Normal getNormalDistribution()