Home
last modified time | relevance | path

Searched refs:testY (Results 1 – 25 of 180) sorted by relevance

12345678

/dports/math/cbc/Cbc-releases-2.10.5/Cbc/src/
H A DCbcCompareDefault.cpp133 if (testX != testY) in test()
134 return testX > testY; in test()
141 double testY = y->objectiveValue() + 1.0e-9 * y->numberUnsatisfied(); in test() local
142 if (testX != testY) in test()
143 return testX > testY; in test()
198 double testY = -weight; in test() local
202 double testY = y->guessedObjectiveValue(); in test() local
207 double testY = y->guessedObjectiveValue(); in test() local
211 testY *= 2.0; // make worse in test()
213 if (testX != testY) in test()
[all …]
H A DCbcCompareObjective.cpp66 double testY = y->objectiveValue(); in test() local
67 if (testX != testY) in test()
68 return testX > testY; in test()
H A DCbcCompareDepth.cpp66 int testY = y->depth(); in test() local
67 if (testX != testY) in test()
68 return testX < testY; in test()
H A DCbcCompareEstimate.cpp66 double testY = y->guessedObjectiveValue(); in test() local
67 if (testX != testY) in test()
68 return testX > testY; in test()
/dports/math/cbc/Cbc-releases-2.10.5/Cbc/examples/
H A DCbcCompareUser.cpp198 int testY = y->depth(); in test() local
199 if (testX != testY) in test()
200 return testX < testY; in test()
208 double testY = y->objectiveValue() + weight * y->numberUnsatisfied(); in test() local
209 if (testX != testY) in test()
210 return testX > testY; in test()
/dports/java/javahelp/javahelp-3ca862d/jhMaster/JavaHelp/src/impl/com/sun/java/help/impl/
H A DJHelpPrintHandler.java627 double testY = 0.0, testHeight = 0.0; in createTransforms() local
646 testY = pointRec2.getY(); in createTransforms()
661 if (testY < baseY) { in createTransforms()
662 baseY = testY; in createTransforms()
674 baseY = testY; in createTransforms()
680 if (testY < baseY) { in createTransforms()
682 baseY = testY; in createTransforms()
701 if (testY < baseY) { in createTransforms()
702 baseY = testY; in createTransforms()
708 if (baseY <= testY) { in createTransforms()
[all …]
/dports/games/7kaa/7kaa-2.15.4p1/src/
H A DOSPRITEA.cpp131 int testY = addY + 1; in add_sorted() local
141 testY = operator[](x+1)->abs_y2; // the one to be compared with the adding one. in add_sorted()
143 if (addY < testY) in add_sorted()
148 if (addY == testY) in add_sorted()
152 if (addY >= testY) in add_sorted()
/dports/math/R/R-4.1.2/src/library/grid/tests/
H A Dreg.R93 testY <- function(y1, y2) { function
131 testY(grobY(circleGrob(r=unit(.5, "inches")), theta),
134 testY(grobY(circleGrob(x=unit(.5, "npc") + unit(c(-.25, .25), "inches"),
198 testY(grobY(rectGrob(width=unit(1, "inches"),
208 testY(grobY(rectGrob(x=unit(.5, "npc") + unit(c(-.25, .25), "inches"),
289 testY(grobY(polygonGrob(x=unit(.5, "npc") +
305 testY(grobY(polygonGrob(x=unit(.5, "npc") +
389 testY(grobY(textGrob(str), theta),
398 testY(grobY(textGrob(str,
/dports/math/libRmath/R-4.1.1/src/library/grid/tests/
H A Dreg.R93 testY <- function(y1, y2) { function
131 testY(grobY(circleGrob(r=unit(.5, "inches")), theta),
134 testY(grobY(circleGrob(x=unit(.5, "npc") + unit(c(-.25, .25), "inches"),
198 testY(grobY(rectGrob(width=unit(1, "inches"),
208 testY(grobY(rectGrob(x=unit(.5, "npc") + unit(c(-.25, .25), "inches"),
289 testY(grobY(polygonGrob(x=unit(.5, "npc") +
305 testY(grobY(polygonGrob(x=unit(.5, "npc") +
389 testY(grobY(textGrob(str), theta),
398 testY(grobY(textGrob(str,
/dports/devel/R-cran-caret/caret/R/
H A DextractProb.R7 testY = NULL, argument
29 cat("Number of test samples: ", length(testY), "\n\n")
63 if(!is.null(testX) & !is.null(testY)) {
66 tempY <- testY
80 obs <- c(obs, as.character(testY))
H A Dlearning_curve.R101 testY = dat[-for_model, outcome])
105 testY = dat[-for_model, outcome])
117 testY = dat[in_mod, outcome])
121 testY = dat[in_mod, outcome])
H A DextractPrediction.R5 testY = NULL, argument
23 cat("Number of test samples: ", length(testY), "\n\n")
62 if(!is.null(testX) & !is.null(testY))
77 obs <- c(obs, as.character(testY))
84 obs <- c(obs, testY)
H A Dsafs.R582 testY = y[safsControl$indexOut[[i]]],
633 testY = if(!is.null(in_holdout)) y[in_holdout] else NULL,
828 sa_wrapper <- function(ind, x, y, funcs, holdoutX, holdoutY, testX, testY, argument
851 modelPred$obs <- testY
853 } else modelPred <- data.frame(pred = modelPred, obs = testY, Size = sum(ind == 1))
858 external <- funcs$fitness_extern(modelPred, lev = levels(testY))
877 testX = NULL, testY = NULL,
965 testX = testX, testY = testY,
1475 testY = y_te,
1526 testY = if(!is.null(in_holdout)) y[in_holdout] else NULL,
/dports/astro/kstars/kstars-3.5.6/kstars/fitsviewer/
H A Dfitsthresholddetector.cpp114 int testY = center->y + std::sin(theta) * r; in findOneStar() local
117 if (testX < subX || testX > subW || testY < subY || testY > subH) in findOneStar()
120 if (buffer[testX + testY * stats.width] > running_threshold) in findOneStar()
H A Dfitsgradientdetector.cpp189 int testY = center->y + std::sin(theta) * r; in findSources() local
192 if (testX < 0 || testX >= subW || testY < 0 || testY >= subH) in findSources()
195 if (gradients[testX + testY * subW] > 0) in findSources()
/dports/devel/R-cran-caret/caret/man/
H A DplotObsVsPred.Rd50 testY = BostonHousing$medv[101:200],
75 testY <- Satellite[testSamples, 37]
84 testY = testY,
H A DplotClassProbs.Rd48 testY <- mdrrClass[-inTrain]
63 predProbs <- extractProb(models, testX = testData, testY = testY)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DYuvHelperTest.java39 final ByteBuffer testY = ByteBuffer.allocateDirect(TEST_HEIGHT * TEST_I420_STRIDE_Y); in getTestY() local
40 testY.put(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9}); in getTestY()
41 return testY; in getTestY()
/dports/net-im/tg_owt/tg_owt-d578c76/src/sdk/android/instrumentationtests/src/org/webrtc/
H A DYuvHelperTest.java39 final ByteBuffer testY = ByteBuffer.allocateDirect(TEST_HEIGHT * TEST_I420_STRIDE_Y); in getTestY() local
40 testY.put(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9}); in getTestY()
41 return testY; in getTestY()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DYuvHelperTest.java39 final ByteBuffer testY = ByteBuffer.allocateDirect(TEST_HEIGHT * TEST_I420_STRIDE_Y); in getTestY() local
40 testY.put(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9}); in getTestY()
41 return testY; in getTestY()
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DYuvHelperTest.java39 final ByteBuffer testY = ByteBuffer.allocateDirect(TEST_HEIGHT * TEST_I420_STRIDE_Y); in getTestY() local
40 testY.put(new byte[] {1, 2, 3, 4, 5, 6, 7, 8, 9}); in getTestY()
41 return testY; in getTestY()
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/tests/main_tests/
H A Dlinear_regression_test.cpp256 const arma::rowvec testY = IO::GetParam<arma::rowvec>("output_predictions"); variable
258 REQUIRE(testY.n_rows == 1);
259 REQUIRE(testY.n_cols == M);
/dports/print/scribus-devel/scribus-1.5.7/scribus/plugins/import/pdf/
H A Dpdftextrecognition.cpp196 bool PdfTextRegion::adjunctLesser(qreal testY, qreal lastY, qreal baseY) in adjunctLesser() argument
198 return (testY > lastY in adjunctLesser()
199 && testY <= baseY + lineSpacing in adjunctLesser()
206 bool PdfTextRegion::adjunctGreater(qreal testY, qreal lastY, qreal baseY) in adjunctGreater() argument
208 return (testY <= lastY in adjunctGreater()
209 && testY >= baseY - lineSpacing * 0.75 in adjunctGreater()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui.tests/ui/org/eclipse/jdt/junit/tests/
H A DTestPriorizationSuite.java25 public void testY() { in testY() method in TestPriorizationSuite
/dports/lang/purescript/purescript-0.14.5/tests/purs/passing/
H A DImportExplicit.purs8 testY = Y

12345678