net.finmath.montecarlo.RandomVariableLazyEvaluationFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-lib Show documentation
Show all versions of finmath-lib Show documentation
finmath lib is a Mathematical Finance Library in Java.
It provides algorithms and methodologies related to mathematical finance.
/*
* (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
*
* Created on 09.02.2004
*/
package net.finmath.montecarlo;
import net.finmath.stochastic.RandomVariable;
/**
*
* @author Christian Fries
* @version 1.0
*/
public class RandomVariableLazyEvaluationFactory extends AbstractRandomVariableFactory {
/**
*
*/
private static final long serialVersionUID = 5474699190536441150L;
@Override
public RandomVariable createRandomVariable(final double time, final double value) {
return new RandomVariableLazyEvaluation(time, value);
}
@Override
public RandomVariable createRandomVariable(final double time, final double[] values) {
return new RandomVariableLazyEvaluation(time, values);
}
}