Home
last modified time | relevance | path

Searched refs:bestPt (Results 1 – 5 of 5) sorted by relevance

/dports/math/couenne/Couenne-releases-0.5.8/Couenne/src/branch/
H A DCouenneVarObject.cpp172 bestPt = 0., in computeBranchingPoint() local
247 bestPt = *brPts; in computeBranchingPoint()
269 bestPt = CoinMax (l + width, CoinMin (bestPt, u - width)); in computeBranchingPoint()
273 if ((bestPt < l + width) || (bestPt > u - width)) in computeBranchingPoint()
274 bestPt = (l+u)/2; in computeBranchingPoint()
281 bestPt = midInterval (bestPt, l, u, info); in computeBranchingPoint()
284 if (CoinMin (fabs (bestPt - l), fabs (bestPt - u)) < 1e-3) { in computeBranchingPoint()
295 (fabs (bestPt) > large_bound)) in computeBranchingPoint()
296 bestPt = 0.; in computeBranchingPoint()
299 *brPts = bestPt; in computeBranchingPoint()
[all …]
/dports/cad/magic/magic-8.3.245/grouter/
H A DgrouteMain.c300 GlPoint *lastPt, *bestPt, *adjustedPt; local
334 bestPt = glMazeFindPath(loc, bestCost);
337 if (bestPt == (GlPoint *) NULL)
340 return bestPt;
342 shortLength = bestPt->gl_cost;
362 bestPt = (GlPoint *) NULL;
370 bestPt = adjustedPt;
376 if (bestPt)
383 bestPt->gl_cost,
384 (float) bestPt->gl_cost / (float) shortLength * 100.0);
[all …]
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/adaptagrams/libavoid/
H A Dmakepath.cpp1341 Point& bestPt = bestNodeInf->point; in search() local
1344 bool notInlineX = prevInf && (prevInf->point.x != bestPt.x); in search()
1345 bool notInlineY = prevInf && (prevInf->point.y != bestPt.y); in search()
1346 if ((bestPt.x == nextPt.x) && notInlineX && !notInlineY && in search()
1347 (bestPt[YDIM] != src->point[YDIM])) in search()
1349 if (nextPt.y < bestPt.y) in search()
1357 else if (nextPt.y > bestPt.y) in search()
1366 if ((bestPt.y == nextPt.y) && notInlineY && !notInlineX && in search()
1367 (bestPt[XDIM] != src->point[XDIM])) in search()
1369 if (nextPt.x < bestPt.x) in search()
[all …]
/dports/astro/merkaartor/merkaartor-0.19.0/src/Docks/
H A DGeoImageDock.cpp776 TrackNode *Pt, *bestPt = NULL; in loadImages() local
786 bestPt = Pt; in loadImages()
791 if (!bestPt) in loadImages()
810 addUsedTrackpoint(NodeData(bestPt, file, time, false)); in loadImages()
812 bestPt->setTag("_picture_", "GeoTagged"); in loadImages()
/dports/science/rdkit/rdkit-Release_2021_03_5/rdkit/Chem/Subshape/
H A DBuilderUtils.py164 bestPt = posI
165 count, centroid = Geometry.ComputeGridCentroid(shapeGrid, bestPt, winRad)