All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.quantlib.Fdm3DimSolver Maven / Gradle / Ivy

There is a newer version: 1.36.0
Show newest version
/* ----------------------------------------------------------------------------
 * 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);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy