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

breeze.integrate.ApacheAdamsIntegrator.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.AdamsIntegrator

abstract class ApacheAdamsIntegrator(
    relTol: DenseVector[Double] = null,
    absTol: DenseVector[Double] = null)
  extends ApacheAdaptiveStepIntegrator(relTol, absTol) {

  type T <: AdamsIntegrator
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy