Searched refs:convergence (Results 1 - 8 of 8) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DEventState.java52 private final double convergence; field in class:EventState
91 * @param convergence convergence threshold in the event time search
96 final double convergence, final int maxIterationCount) {
99 this.convergence = FastMath.abs(convergence);
128 /** Get the convergence threshold for event localization.
129 * @return convergence threshold for event localization
132 return convergence;
161 // where epsilon is the convergence threshol
95 EventState(final EventHandler handler, final double maxCheckInterval, final double convergence, final int maxIterationCount) argument
[all...]
H A DCombinedEventsManager.java64 * @param convergence convergence threshold in the event time search
71 final double convergence, final int maxIterationCount) {
73 convergence, maxIterationCount));
70 addEventHandler(final EventHandler handler, final double maxCheckInterval, final double convergence, final int maxIterationCount) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DGaussNewtonEstimator.java53 /** Default threshold for cost convergence. */
59 /** Threshold for cost convergence. */
60 private double convergence; field in class:GaussNewtonEstimator
72 this.convergence = DEFAULT_CONVERGENCE;
78 * <p>This constructor builds an estimator and stores its convergence
97 * @param convergence criterion threshold below which we do not need
102 * J<sub>n</sub> &times convergence</code>, where <code>J<sub>n</sub></code>
106 public GaussNewtonEstimator(final int maxCostEval, final double convergence, argument
110 this.convergence = convergence;
118 setConvergence(final double convergence) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DODEIntegrator.java70 * @param convergence convergence threshold in the event time search
77 double convergence, int maxIterationCount);
76 addEventHandler(EventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount) argument
H A DAbstractIntegrator.java124 final double convergence,
126 eventsStates.add(new EventState(handler, maxCheckInterval, convergence, maxIterationCount));
122 addEventHandler(final EventHandler handler, final double maxCheckInterval, final double convergence, final int maxIterationCount) argument
/external/linux-tools-perf/src/tools/perf/bench/
H A Dnuma.c176 OPT_INTEGER('x', "perturb_secs", &p0.perturb_secs, "perturb thread 0/0 every X secs, to test convergence stability"),
181 OPT_BOOLEAN('c', "show_convergence", &p0.show_convergence, "show convergence details"),
182 OPT_BOOLEAN('m', "measure_convergence", &p0.measure_convergence, "measure convergence latency"),
879 /* Strong convergence: all threads compress on a single node: */
888 static void calc_convergence(double runtime_ns_max, double *convergence) argument
980 if (!*convergence) {
981 *convergence = runtime_ns_max;
982 tprintf(" (%6.1fs converged)\n", *convergence/1e9);
989 if (*convergence) {
991 *convergence
997 show_summary(double runtime_ns_max, int l, double *convergence) argument
1018 double convergence = 0; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DFirstOrderIntegratorWithJacobians.java148 * @param convergence convergence threshold in the event time search
156 double convergence,
161 maxCheckInterval, convergence, maxIterationCount);
154 addEventHandler(EventHandlerWithJacobians handler, double maxCheckInterval, double convergence, int maxIterationCount) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DGraggBulirschStoerIntegrator.java347 final double convergence,
349 super.addEventHandler(function, maxCheckInterval, convergence, maxIterationCount);
724 // check convergence
732 // convergence have been reached just before targetIter
735 // estimate if there is a chance convergence will
759 // convergence has been reached exactly at targetIter
762 // estimate if there is a chance convergence will
345 addEventHandler(final EventHandler function, final double maxCheckInterval, final double convergence, final int maxIterationCount) argument

Completed in 242 milliseconds