org.quantlib.Fdm3DimSolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quantlib Show documentation
Show all versions of quantlib Show documentation
Java language binding for QuantLib
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.2.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package org.quantlib;
public class Fdm3DimSolver implements org.quantlib.helpers.QuantLibJNIHelpers.AutoCloseable {
private transient long swigCPtr;
private transient boolean swigCMemOwn;
protected Fdm3DimSolver(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(Fdm3DimSolver obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
protected void swigSetCMemOwn(boolean own) {
swigCMemOwn = own;
}
@SuppressWarnings({"deprecation", "removal"})
protected void finalize() {
delete();
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
QuantLibJNI.delete_Fdm3DimSolver(swigCPtr);
}
swigCPtr = 0;
}
}
public Fdm3DimSolver(FdmSolverDesc solverDesc, FdmSchemeDesc schemeDesc, FdmLinearOpComposite op) {
this(QuantLibJNI.new_Fdm3DimSolver(FdmSolverDesc.getCPtr(solverDesc), solverDesc, FdmSchemeDesc.getCPtr(schemeDesc), schemeDesc, FdmLinearOpComposite.getCPtr(op), op), true);
}
public void performCalculations() {
QuantLibJNI.Fdm3DimSolver_performCalculations(swigCPtr, this);
}
public double interpolateAt(double x, double y, double z) {
return QuantLibJNI.Fdm3DimSolver_interpolateAt(swigCPtr, this, x, y, z);
}
public double thetaAt(double x, double y, double z) {
return QuantLibJNI.Fdm3DimSolver_thetaAt(swigCPtr, this, x, y, z);
}
}