Home
last modified time | relevance | path

Searched full:solvers (Results 1 – 25 of 190) sorted by relevance

12345678

/aosp_15_r20/libcore/ojluni/src/test/java/util/concurrent/tck/
H A DExecutorCompletionService9Test.java75 Collection<Callable<Integer>> solvers) in solveAll() argument
79 solvers.forEach(cs::submit); in solveAll()
80 for (int i = solvers.size(); i > 0; i--) { in solveAll()
88 Collection<Callable<Integer>> solvers) in solveAny() argument
92 int n = solvers.size(); in solveAny()
96 solvers.forEach(solver -> futures.add(cs.submit(solver))); in solveAny()
122 * The first "solvers" sample code in the class javadoc works.
128 Set<Callable<Integer>> solvers = Set.of( in testSolveAll() local
134 solveAll(cachedThreadPool, solvers); in testSolveAll()
140 * The second "solvers" sample code in the class javadoc works.
[all …]
/aosp_15_r20/external/eigen/doc/
H A DSparseLinearSystems.dox3solvers available in Eigen. The main steps that are common to all these linear solvers are introdu…
7 \section TutorialSparseSolverList List of sparse solvers
9 %Eigen currently provides a wide set of built-in solvers, as well as wrappers to external solver li…
12 \subsection TutorialSparseSolverList_Direct Built-in direct solvers
37 \subsection TutorialSparseSolverList_Iterative Built-in iterative solvers
59 \subsection TutorialSparseSolverList_Wrapper Wrappers to external solvers
91 All these solvers follow the same general concept.
116 For \c SPD solvers, a second optional template argument allows to specify which triangular part hav…
145 Finally, most of the iterative solvers, can also be used in a \b matrix-free context, see the follo…
148 …ectangular matrices. These are the results of using direct solvers. For this class of solvers prec…
[all …]
H A DDenseDecompositionBenchmark.dox7 For a more general overview on the features and numerical robustness of linear solvers and decompos…
12 …compute the symmetric covariance matrix \f$ A^T A \f$ for the first four solvers based on Cholesky…
33 + LLT is always the fastest solvers.
H A DMatrixfreeSolverExample.dox6 \eigenManualPage MatrixfreeSolverExample Matrix-free solvers
8 Iterative solvers such as ConjugateGradient and BiCGSTAB can be used in a matrix free context. To t…
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/numeric/odeint/doc/
Ddetails_steppers.qbk96 [section Symplectic solvers]
98 As mentioned above symplectic solvers are used for Hamiltonian systems. Symplectic solvers conserve…
114 … this simplified form. This kind of system can be used in the symplectic solvers, by simply passin…
126 [section Implicit solvers]
130 … stiff system possesses two or more time scales of very different order. Solvers for stiff systems…
132 For implicit solvers the system is again a pair, where the first component computes ['f(x,t)] and t…
134 [important Implicit solvers only work with ublas::vector as state type. At
141 Another large class of solvers are multi-step method. They save a small part of the history of the …
325solvers for ODEs since the noisy part of the SDE has to be scaled differently then the determinist…
375 You can use this meta algorithm to construct you own solvers. This has the
Dexamples_table.qbk40 …es gives a brief introduction to odeint and shows the usage of the classical Runge-Kutta-solvers.]]
67 [The solar system example shows the usage of the symplectic solvers.]]
73 …[The stiff system example shows the usage of the stiff solvers using the Jacobian of the system fu…
85 …[This stiff system example again shows the usage of the stiff solvers by integrating the van der P…
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/19/libcore/ojluni/src/main/java/java/util/concurrent/
DExecutorCompletionService.java49 * Suppose you have a set of solvers for a certain problem, each
57 * Collection<Callable<Result>> solvers)
61 * solvers.forEach(cs::submit);
62 * for (int i = solvers.size(); i > 0; i--) {
75 * Collection<Callable<Result>> solvers)
79 * int n = solvers.size();
83 * solvers.forEach(solver -> futures.add(cs.submit(solver)));
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/
H A DExecutorCompletionService.java49 * Suppose you have a set of solvers for a certain problem, each
57 * Collection<Callable<Result>> solvers)
61 * solvers.forEach(cs::submit);
62 * for (int i = solvers.size(); i > 0; i--) {
75 * Collection<Callable<Result>> solvers)
79 * int n = solvers.size();
83 * solvers.forEach(solver -> futures.add(cs.submit(solver)));
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/
DExecutorCompletionService.java49 * Suppose you have a set of solvers for a certain problem, each
57 * Collection<Callable<Result>> solvers)
61 * solvers.forEach(cs::submit);
62 * for (int i = solvers.size(); i > 0; i--) {
75 * Collection<Callable<Result>> solvers)
79 * int n = solvers.size();
83 * solvers.forEach(solver -> futures.add(cs.submit(solver)));
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolver.java17 package org.apache.commons.math.analysis.solvers;
64 * Solvers that do require bracketing should be able to handle the case
84 * Solvers that do require bracketing should be able to handle the case
106 * Solvers that do require bracketing should be able to handle the case
128 * Solvers that do require bracketing should be able to handle the case
H A DUnivariateRealSolverImpl.java18 package org.apache.commons.math.analysis.solvers;
30 * solvers.
142 * Solvers that do require bracketing should be able to handle the case
165 * Solvers that do require bracketing should be able to handle the case
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/dfp/
H A DBracketingNthOrderBrentSolverDFP.java20 import org.apache.commons.math3.analysis.solvers.AllowedSolution;
21 import org.apache.commons.math3.analysis.solvers.FieldBracketingNthOrderBrentSolver;
97 * single zero root. Solvers that do require bracketing should be able to handle the case where
122 * that the interval brackets a single zero root. Solvers that do require bracketing should be
/aosp_15_r20/out/soong/.intermediates/external/apache-commons-math/apache-commons-math/android_common/turbine/
Dapache-commons-math.jar.rsp1solvers/BisectionSolver.java external/apache-commons-math/src/main/java/org/apache/commons/math/an…
/aosp_15_r20/out/soong/.intermediates/external/apache-commons-math/apache-commons-math/android_common/javac/
Dapache-commons-math.jar.rsp1solvers/BisectionSolver.java external/apache-commons-math/src/main/java/org/apache/commons/math/an…
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/ode/events/
H A DEventState.java21 import org.apache.commons.math3.analysis.solvers.AllowedSolution;
22 import org.apache.commons.math3.analysis.solvers.BracketedUnivariateSolver;
23 import org.apache.commons.math3.analysis.solvers.PegasusSolver;
24 import org.apache.commons.math3.analysis.solvers.UnivariateSolver;
25 import org.apache.commons.math3.analysis.solvers.UnivariateSolverUtils;
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/analysis/solvers/
H A DBracketedUnivariateSolver.java18 package org.apache.commons.math3.analysis.solvers;
52 * Solvers that do require bracketing should be able to handle the case
73 * Solvers that do require bracketing should be able to handle the case
H A DBaseUnivariateSolver.java17 package org.apache.commons.math3.analysis.solvers;
93 * Solvers that do require bracketing should be able to handle the case
112 * Solvers that do require bracketing should be able to handle the case
H A DBracketedRealFieldUnivariateSolver.java18 package org.apache.commons.math3.analysis.solvers;
102 * Solvers that do require bracketing should be able to handle the case
123 * Solvers that do require bracketing should be able to handle the case
H A DAbstractUnivariateSolver.java18 package org.apache.commons.math3.analysis.solvers;
23 * Base class for solvers.
H A DAbstractPolynomialSolver.java18 package org.apache.commons.math3.analysis.solvers;
23 * Base class for solvers.
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/
H A DCombinedTypeSolver.java29 * A container for type solvers. All solving is done by the contained type solvers.
44 * Main use case for this is to circumvent bugs or missing functionality in some type solvers.
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/ode/
H A DFirstOrderFieldIntegrator.java21 import org.apache.commons.math3.analysis.solvers.BracketedRealFieldUnivariateSolver;
82 * org.apache.commons.math3.analysis.solvers.FieldBracketingNthOrderBrentSolver}.
90 * org.apache.commons.math3.analysis.solvers.BracketedRealFieldUnivariateSolver)
/aosp_15_r20/external/eigen/bench/spbench/
H A Dspbenchsolver.h87 double best_time_val; // Current best time overall solvers
109 // List all available solvers in printStatheader()
512 RelErr = tol; //Relative residual error as stopping criterion for iterative solvers in Browse_Matrices()
548 // Call all suitable solvers for this linear system in Browse_Matrices()
/aosp_15_r20/external/eigen/Eigen/
H A DIterativeLinearSolvers20 * Those solvers are accessible via the following classes:
25 * These iterative solvers are associated with some preconditioners:
/aosp_15_r20/external/pytorch/docs/source/
H A Dlinalg.rst48 .. _linalg solvers:
50 Solvers chapter

12345678