Searched defs:simplex (Results 1 - 2 of 2) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
H A DDirectSearchOptimizer.java37 * This class implements simplex-based direct search optimization
53 * the objective function values at the vertices of a simplex (which is a
57 * <p>The initial configuration of the simplex can be set using either
74 * previous and current simplex to the convergence checker, not the best ones.</p>
76 * <p>This class is the base class performing the boilerplate simplex
77 * initialization and handling. The simplex update by itself is
92 protected RealPointValuePair[] simplex; field in class:DirectSearchOptimizer
112 /** Start simplex configuration. */
123 /** Set start configuration for simplex.
124 * <p>The start configuration for simplex i
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c140 * (The simplex noise functions as such also have different scaling.)
187 * A lookup table to traverse the simplex around a given point in 4D.
191 static unsigned char simplex[64][4] = { variable
211 /** 1D simplex noise */
237 /** 2D simplex noise */
246 /* Skew the input space to determine which simplex cell we're in */
263 /* For the 2D case, the simplex shape is an equilateral triangle. */
264 /* Determine which simplex we are in. */
265 int i1, j1; /* Offsets for second (middle) corner of simplex in (i,j) coords */
319 /** 3D simplex nois
[all...]

Completed in 107 milliseconds