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

breeze.integrate.HighamHall54Integrator.scala Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package breeze.integrate

import breeze.linalg._
import org.apache.commons.math3.ode.nonstiff.{HighamHall54Integrator => ApacheHighamHall54Integrator}

class HighamHall54Integrator(
    minStep: Double,
    maxStep: Double,
    relTol: DenseVector[Double] = null,
    absTol: DenseVector[Double] = null)
  extends ApacheAdaptiveStepIntegrator(relTol, absTol) {

  type T = ApacheHighamHall54Integrator

  protected final def create: ApacheHighamHall54Integrator =
    new ApacheHighamHall54Integrator(minStep, maxStep, ApacheAdaptiveStepIntegrator.defaultAbsTol, ApacheAdaptiveStepIntegrator.defaultRelTol)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy