Uses of Class
org.apache.commons.math3.analysis.differentiation.DSCompiler
Packages that use DSCompiler
Package
Description
This package holds the main interfaces and basic building block classes
dealing with differentiation.
-
Uses of DSCompiler in org.apache.commons.math3.analysis.differentiation
Fields in org.apache.commons.math3.analysis.differentiation declared as DSCompilerModifier and TypeFieldDescriptionprivate DSCompiler
DerivativeStructure.compiler
Compiler for the current dimensions.Methods in org.apache.commons.math3.analysis.differentiation that return DSCompilerModifier and TypeMethodDescriptionstatic DSCompiler
DSCompiler.getCompiler
(int parameters, int order) Get the compiler for number of free parameters and order.Methods in org.apache.commons.math3.analysis.differentiation with parameters of type DSCompilerModifier and TypeMethodDescriptionvoid
DSCompiler.checkCompatibility
(DSCompiler compiler) Check rules set compatibility.private static int[][][]
DSCompiler.compileCompositionIndirection
(int parameters, int order, DSCompiler valueCompiler, DSCompiler derivativeCompiler, int[][] sizes, int[][] derivativesIndirection) Compile the function composition indirection array.private static int[][]
DSCompiler.compileDerivativesIndirection
(int parameters, int order, DSCompiler valueCompiler, DSCompiler derivativeCompiler) Compile the derivatives indirection array.private static int[]
DSCompiler.compileLowerIndirection
(int parameters, int order, DSCompiler valueCompiler, DSCompiler derivativeCompiler) Compile the lower derivatives indirection array.private static int[][][]
DSCompiler.compileMultiplicationIndirection
(int parameters, int order, DSCompiler valueCompiler, DSCompiler derivativeCompiler, int[] lowerIndirection) Compile the multiplication indirection array.private static int[][]
DSCompiler.compileSizes
(int parameters, int order, DSCompiler valueCompiler) Compile the sizes array.Constructors in org.apache.commons.math3.analysis.differentiation with parameters of type DSCompilerModifierConstructorDescriptionprivate
DerivativeStructure
(DSCompiler compiler) Build an instance with all values and derivatives set to 0.private
DSCompiler
(int parameters, int order, DSCompiler valueCompiler, DSCompiler derivativeCompiler) Private constructor, reserved for the factory methodgetCompiler(int, int)
.