Home
last modified time | relevance | path

Searched refs:tol (Results 201 – 225 of 16789) sorted by relevance

12345678910>>...672

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/adapters/sacado/src/function/
H A DROL_Sacado_StdConstraint.hpp69 const vector<ScalarT> &x, Real &tol );
83 void value(V &c, const V &x, Real &tol ) { in value() argument
86 value(*(cs.getVector()),*(xs.getVector()),tol); in value()
90 constr_.value(c,x,tol); in value()
102 const vector<Real> &x, Real &tol) { in applyJacobian() argument
103 this->applyJacobianAD(jv,v,x,tol); in applyJacobian()
116 this->applyAdjointJacobianAD(aju,u,x,tol); in applyAdjointJacobian()
132 this->applyAdjointHessianAD(ahuv,u,v,x,tol); in applyAdjointHessian()
163 constr_.value(c_fad,*x_fad,tol); in applyJacobianAD()
200 constr_.value(c_fad,*x_fad,tol); in applyAdjointJacobianAD()
[all …]
/dports/math/gsl/gsl-2.7/cheb/
H A Dtest.c74 double tol = 100.0 * GSL_DBL_EPSILON; in test_dim() local
114 double tol = 100.0 * GSL_DBL_EPSILON; in main() local
166 gsl_test_abs (cs->c[i], c_exp, tol, "c[%d] for T_0(x)", i); in main()
174 gsl_test_abs (cs->c[i], c_exp, tol, "c[%d] for T_1(x)", i); in main()
182 gsl_test_abs (cs->c[i], c_exp, tol, "c[%d] for T_2(x)", i); in main()
187 gsl_test_abs (cs->c[0], 0.0, tol, "c[0] for F_sin(x)"); in main()
189 gsl_test_abs (cs->c[2], 0.0, tol, "c[2] for F_sin(x)"); in main()
191 gsl_test_abs (cs->c[4], 0.0, tol, "c[4] for F_sin(x)"); in main()
196 gsl_test_abs(r, sin(x), tol, "gsl_cheb_eval, sin(%.3g)", x); in main()
202 gsl_test_abs(r, sin(x), tol, "gsl_cheb_eval_err, sin(%.3g)", x); in main()
[all …]
/dports/math/R-cran-maxLik/maxLik/inst/tinytest/
H A Dtest-optimizers.R22 tol <- .Machine$double.eps^0.25 globalVar
161 coef(ml), truePar, tol=2*max(stdEr(ml))
176 tol = 0.1, check.attributes=FALSE
180 tol = 0.001
188 tol = 0.01, check.attributes = FALSE
192 tol = tol, check.attributes = FALSE
215 tol=0.01, check.attributes = FALSE
233 tol=tol
242 expect_equal(coef(ml), coef(mlg), tol=tol)
306 tol=0.001)
[all …]
/dports/math/R-cran-robustbase/robustbase/tests/
H A Dnlregrob-tst.R19 NP <- 30 ; tol <- 1e-11 globalVar
21 NP <- 15 ; tol <- 1e-7 globalVar
57 NP = NP, tol = tol, add_to_init_pop = init_p )
84 tol = tol,
105 control = nls.control(tol = Cfit$control$tol)) argument
216 assert.EQ(coef(Rfit.MM.S.lqq), cfcl, tol = 0.01, giveRE=TRUE)
218 assert.EQ(coef(Rfit.MM.S.hampel), cfcl, tol = 0.01, giveRE=TRUE)
221 assert.EQ(coef(Rfit.MM.lts.lqq), cfcl, tol = 0.01, giveRE=TRUE)
225 assert.EQ(coef(Rfit.tau.optimal), cfcl, tol = 0.01, giveRE=TRUE)
226 assert.EQ(coef(Rfit.CM)[-3], cfcl, tol = 0.01, giveRE=TRUE)
[all …]
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/testsuite/misc-swfmill.all/
H A DbackgroundTestRunner.cpp72 int tol = 15; in trymain() local
74 check_pixel(60, 60, 50, red, tol); in trymain()
75 check_pixel(60, 400, 50, red, tol); in trymain()
76 check_pixel(600, 400, 50, red, tol); in trymain()
77 check_pixel(600, 60, 50, red, tol); in trymain()
78 check_pixel(320, 240, 50, red, tol); in trymain()
84 check_pixel(60, 60, 50, red, tol); in trymain()
85 check_pixel(60, 400, 50, red, tol); in trymain()
86 check_pixel(600, 400, 50, red, tol); in trymain()
87 check_pixel(600, 60, 50, red, tol); in trymain()
[all …]
/dports/science/dftbplus/dftbplus-19.1/external/poisson/
H A Dgewald.F9036 lastshell = tol+1e-8
66 lastshell = tol+1e-8
79 IF(abs(lastshell) .gt. tol) THEN
101 lastshell = tol+1.d-8
104 & (abs(lastshell) .gt. tol)))
141 lastshell = tol+1e-8
231 lastshell = tol+1d-8
271 lastshell = tol+1e-8
359 lastshell = tol+1e-8
411 lastshell = tol+1e-8
[all …]
/dports/science/ALPSCore/ALPSCore-2.2.0/utilities/test/
H A Dvector_comparison_predicates.hpp18 ::testing::AssertionResult is_near(T v1, T v2, double tol=1E-10) { in is_near() argument
19 if (std::fabs(v1-v2)<tol) { in is_near()
20 …return ::testing::AssertionSuccess() << v1 << " almost equals " << v2 << " with tolerance " << tol; in is_near()
22 … return ::testing::AssertionFailure() << v1 << " not equal " << v2 << " with tolerance " << tol; in is_near()
27 ::testing::AssertionResult is_rel_near(T v1, T v2, double tol=1E-10) { in is_rel_near() argument
29 if (v1==v2 || std::fabs(v1-v2)/vmax < tol) { in is_rel_near()
32 …n ::testing::AssertionFailure() << v1 << " not equal " << v2 << " with relative tolerance " << tol; in is_rel_near()
37 …ng::AssertionResult is_near(const std::vector<T>& v1, const std::vector<T>& v2, double tol=1E-10) { in is_near() argument
43 ::testing::AssertionResult res=is_near(v1[i], v2[i], tol); in is_near()
59 ::testing::AssertionResult res=is_rel_near(v1[i], v2[i], tol); in is_rel_near()
[all …]
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/R/
H A DTDistributionTestCases.R25 tol <- 1E-9 globalVar
31 verifyDistribution <- function(points, expected, df, tol) { argument
47 verifyDensity <- function(points, expected, df, tol) { argument
55 if (assertEquals(expected, rDensityValues, tol, "Density Values")) {
63 verifyQuantiles <- function(points, expected, df, tol) { argument
87 verifyQuantiles(distributionValues, distributionPoints, df, tol)
88 verifyDistribution(distributionPoints, distributionValues, df, tol)
89 verifyDensity(distributionPoints, densityValues, df, tol)
96 verifyQuantiles(distributionValues, distributionPoints, df, tol)
97 verifyDistribution(distributionPoints, distributionValues, df, tol)
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/src/step/fletcher/
H A DROL_FletcherBase.hpp117 fval_ = obj_->value(x,tol); nfval_++; in objValue()
124 obj_->gradient(*g_, x, tol); ngval_++; in objGrad()
131 con_->value(*c_,x,tol); ncval_++; in conValue()
154 Real tol = static_cast<Real>(1e-12); in getLagrangianGradient() local
155 computeMultipliers(x, tol); in getLagrangianGradient()
162 conValue(x, tol); in getConstraintVec()
169 Real tol = static_cast<Real>(1e-12); in getMultiplierVec() local
170 computeMultipliers(x, tol); in getMultiplierVec()
178 Real tol = static_cast<Real>(1e-12); in getGradient() local
179 this->gradient(*gPhi_, x, tol); in getGradient()
[all …]
/dports/science/mpqc/mpqc-2.3.1/src/lib/chemistry/molecule/
H A Dmolsymm.cc54 Molecule::init_symmetry_info(double tol) in init_symmetry_info() argument
114 if (np.dist(aj) < tol in init_symmetry_info()
264 is_linear_planar(linear,planar,tol); in highest_point_group()
289 if (BAxCA.norm() > tol) { in highest_point_group()
312 if (is_axis(com,axis,2,tol)) { in highest_point_group()
470 if (BAxCA.norm() > tol) { in highest_point_group()
493 if (norm_perp < tol) { in highest_point_group()
635 Molecule::is_linear(double tol) const in is_linear()
645 Molecule::is_planar(double tol) const in is_planar()
680 if (min_BAdotCA >= 1.0 - tol) { in is_linear_planar()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/brad/tests/
H A Dtest_image_metadata.cxx48 double tol = 1e-5; in test_image_metadata() local
49 TEST_NEAR("i/o test: sun_azimuth", md.sun_azimuth_,md2.sun_azimuth_,tol); in test_image_metadata()
50 TEST_NEAR("i/o test: sun_elevation", md.sun_elevation_, md2.sun_elevation_, tol); in test_image_metadata()
51 TEST_NEAR("i/o test: view_azimuth",md.view_azimuth_, md2.view_azimuth_, tol); in test_image_metadata()
52 TEST_NEAR("i/o test: view_elevation",md.view_elevation_, md2.view_elevation_, tol); in test_image_metadata()
53 TEST_NEAR("i/o test: sun_irradiance",md.sun_irradiance_, md2.sun_irradiance_, tol); in test_image_metadata()
58 succeed = (std::fabs(md.abscal_[i] - md2.abscal_[i]) <= tol); in test_image_metadata()
84 TEST_NEAR("binary i/o test: sun_azimuth", md.sun_azimuth_,md_in.sun_azimuth_,tol); in test_image_metadata()
96 succeed = (std::fabs(md.abscal_[i] - md2.abscal_[i]) <= tol); in test_image_metadata()
108 succeed = (std::fabs(md.gains_[i] - md_in.gains_[i]) <= tol); in test_image_metadata()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/mul/vil3d/tests/
H A Dtest_algo_distance_transform.cxx43 double tol=1e-6; in test_signed_distance_transform() local
46 TEST_NEAR("26 connected distance correct for (2,2,0)",image(2,2,0),2*lk,tol); in test_signed_distance_transform()
47 TEST_NEAR("26 connected distance correct for (2,0,2)",image(2,0,2),2*lj,tol); in test_signed_distance_transform()
48 TEST_NEAR("26 connected distance correct for (0,2,2)",image(0,2,2),2*li,tol); in test_signed_distance_transform()
49 TEST_NEAR("26 connected distance correct for (2,2,4)",image(2,2,4),2*lk,tol); in test_signed_distance_transform()
50 TEST_NEAR("26 connected distance correct for (2,4,2)",image(2,4,2),2*lj,tol); in test_signed_distance_transform()
51 TEST_NEAR("26 connected distance correct for (4,2,2)",image(4,2,2),2*li,tol); in test_signed_distance_transform()
77 double tol=1e-6; in test_signed_distance_transform() local
80 TEST_NEAR("26 connected distance correct for (1,0,0)",image(1,0,0),-1.0*li,tol); in test_signed_distance_transform()
81 TEST_NEAR("26 connected distance correct for (0,1,0)",image(0,1,0),-1.0*lj,tol); in test_signed_distance_transform()
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/src/function/simopt/
H A DROL_Objective_TimeSimOpt.hpp180 Real& tol ) override { in value() argument
181 return value( getVector<0>(u), getVector<1>(u), z, tol ); in value()
185 solve( c, getVector<0>(u), getVector<1>(u), z, tol ); in solve()
194 gradient_1_old( g, u_old, u_new, z, tol ); in gradient_1()
198 gradient_1_new( *g_new, u_old, u_new, z, tol ); in gradient_1()
208 gradient_2( g, u_old, u_new, z, tol ); in gradient_2()
213 Real& tol ) override { in hessVec_11() argument
222 hessVec_11( hv_old, v_old, u_old, u_new, z, tol ); in hessVec_11()
223 hessVec_11( hv_new, v_new, u_old, u_new, z, tol ); in hessVec_11()
229 Real& tol ) override { hv.zero(); } in hessVec_12() argument
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/src/step/augmentedlagrangian/
H A DROL_AugmentedLagrangian_SimOpt.hpp161 fval_ = obj_->value(u,z,tol); nfval_++; in value()
165 Real pval = pen_->value(u,z,tol); in value()
182 pen_->gradient_1(*dualSimVector_,u,z,tol); in gradient_1()
198 pen_->gradient_2(*dualOptVector_,u,z,tol); in gradient_2()
209 obj_->hessVec_11(hv,v,u,z,tol); in hessVec_11()
211 pen_->hessVec_11(*dualSimVector_,v,u,z,tol); in hessVec_11()
222 obj_->hessVec_12(hv,v,u,z,tol); in hessVec_12()
235 obj_->hessVec_21(hv,v,u,z,tol); in hessVec_21()
248 obj_->hessVec_22(hv,v,u,z,tol); in hessVec_22()
260 Real tol = std::sqrt(ROL_EPSILON<Real>()); in getObjectiveValue() local
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/trilinos/packages/rol/src/function/std/
H A DROL_StdConstraint.hpp78 value(*(cs.getVector()),*(xs.getVector()),tol); in value()
88 const Vector<Real> &x, Real &tol) { in applyJacobian() argument
96 Constraint<Real>::applyJacobian(jv,v,x,tol); in applyJacobian()
118 Constraint<Real>::applyAdjointJacobian(ajv,v,x,tol); in applyAdjointJacobian()
132 const Vector<Real> &x, Real &tol) { in applyAdjointHessian() argument
139 *(xs.getVector()), tol ); in applyAdjointHessian()
142 Constraint<Real>::applyAdjointHessian(ahuv,u,v,x,tol); in applyAdjointHessian()
149 Real &tol ) { in applyAdjointHessian() argument
186 const Vector<Real> &g, Real &tol) { in applyPreconditioner() argument
193 *(gs.getVector()), tol ); in applyPreconditioner()
[all …]
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/math/test/
H A Dtest_jacobi.hpp144 T tol = boost::math::tools::epsilon<T>() * 100; in test_spots() local
146 …5), T(0.5)), static_cast<T>(0.905869360370352996327275878479104183407762212476128499788493L), tol); in test_spots()
149 …5), T(0.5)), static_cast<T>(0.879941022963758342138211939938800035594045353539382810624647L), tol); in test_spots()
152 ….5), T(0.5)), static_cast<T>(1.85218402142505803268146025319200184620073865036147924150565L), tol); in test_spots()
155 ….5), T(0.5)), static_cast<T>(1.10391193669599654696698383614539220889596741980833071370343L), tol); in test_spots()
158 …5), T(0.5)), static_cast<T>(0.971377398838178842823315157470233933307542433588855341182382L), tol); in test_spots()
161 ….5), T(0.5)), static_cast<T>(2.04464805020871497502900445828888632133468724223115900866414L), tol); in test_spots()
164 ….5), T(0.5)), static_cast<T>(1.13643979983097851593855424992691981204889859711476187519109L), tol); in test_spots()
167 ….5), T(0.5)), static_cast<T>(1.02946599457230050141998045852435702297405263760707971258676L), tol); in test_spots()
170 ….5), T(0.5)), static_cast<T>(2.10489563855842977359275221390569031239706339764770047142101L), tol); in test_spots()
[all …]
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/math/test/
H A Dtest_jacobi.hpp144 T tol = boost::math::tools::epsilon<T>() * 100; in test_spots() local
146 …5), T(0.5)), static_cast<T>(0.905869360370352996327275878479104183407762212476128499788493L), tol); in test_spots()
149 …5), T(0.5)), static_cast<T>(0.879941022963758342138211939938800035594045353539382810624647L), tol); in test_spots()
152 ….5), T(0.5)), static_cast<T>(1.85218402142505803268146025319200184620073865036147924150565L), tol); in test_spots()
155 ….5), T(0.5)), static_cast<T>(1.10391193669599654696698383614539220889596741980833071370343L), tol); in test_spots()
158 …5), T(0.5)), static_cast<T>(0.971377398838178842823315157470233933307542433588855341182382L), tol); in test_spots()
161 ….5), T(0.5)), static_cast<T>(2.04464805020871497502900445828888632133468724223115900866414L), tol); in test_spots()
164 ….5), T(0.5)), static_cast<T>(1.13643979983097851593855424992691981204889859711476187519109L), tol); in test_spots()
167 ….5), T(0.5)), static_cast<T>(1.02946599457230050141998045852435702297405263760707971258676L), tol); in test_spots()
170 ….5), T(0.5)), static_cast<T>(2.10489563855842977359275221390569031239706339764770047142101L), tol); in test_spots()
[all …]
/dports/databases/percona57-server/boost_1_59_0/libs/math/test/
H A Dtest_jacobi.hpp144 T tol = boost::math::tools::epsilon<T>() * 100; in test_spots() local
146 …5), T(0.5)), static_cast<T>(0.905869360370352996327275878479104183407762212476128499788493L), tol); in test_spots()
149 …5), T(0.5)), static_cast<T>(0.879941022963758342138211939938800035594045353539382810624647L), tol); in test_spots()
152 ….5), T(0.5)), static_cast<T>(1.85218402142505803268146025319200184620073865036147924150565L), tol); in test_spots()
155 ….5), T(0.5)), static_cast<T>(1.10391193669599654696698383614539220889596741980833071370343L), tol); in test_spots()
158 …5), T(0.5)), static_cast<T>(0.971377398838178842823315157470233933307542433588855341182382L), tol); in test_spots()
161 ….5), T(0.5)), static_cast<T>(2.04464805020871497502900445828888632133468724223115900866414L), tol); in test_spots()
164 ….5), T(0.5)), static_cast<T>(1.13643979983097851593855424992691981204889859711476187519109L), tol); in test_spots()
167 ….5), T(0.5)), static_cast<T>(1.02946599457230050141998045852435702297405263760707971258676L), tol); in test_spots()
170 ….5), T(0.5)), static_cast<T>(2.10489563855842977359275221390569031239706339764770047142101L), tol); in test_spots()
[all …]
/dports/databases/xtrabackup/boost_1_59_0/libs/math/test/
H A Dtest_jacobi.hpp144 T tol = boost::math::tools::epsilon<T>() * 100; in test_spots() local
146 …5), T(0.5)), static_cast<T>(0.905869360370352996327275878479104183407762212476128499788493L), tol); in test_spots()
149 …5), T(0.5)), static_cast<T>(0.879941022963758342138211939938800035594045353539382810624647L), tol); in test_spots()
152 ….5), T(0.5)), static_cast<T>(1.85218402142505803268146025319200184620073865036147924150565L), tol); in test_spots()
155 ….5), T(0.5)), static_cast<T>(1.10391193669599654696698383614539220889596741980833071370343L), tol); in test_spots()
158 …5), T(0.5)), static_cast<T>(0.971377398838178842823315157470233933307542433588855341182382L), tol); in test_spots()
161 ….5), T(0.5)), static_cast<T>(2.04464805020871497502900445828888632133468724223115900866414L), tol); in test_spots()
164 ….5), T(0.5)), static_cast<T>(1.13643979983097851593855424992691981204889859711476187519109L), tol); in test_spots()
167 ….5), T(0.5)), static_cast<T>(1.02946599457230050141998045852435702297405263760707971258676L), tol); in test_spots()
170 ….5), T(0.5)), static_cast<T>(2.10489563855842977359275221390569031239706339764770047142101L), tol); in test_spots()
[all …]
/dports/databases/percona57-client/boost_1_59_0/libs/math/test/
H A Dtest_jacobi.hpp144 T tol = boost::math::tools::epsilon<T>() * 100; in test_spots() local
146 …5), T(0.5)), static_cast<T>(0.905869360370352996327275878479104183407762212476128499788493L), tol); in test_spots()
149 …5), T(0.5)), static_cast<T>(0.879941022963758342138211939938800035594045353539382810624647L), tol); in test_spots()
152 ….5), T(0.5)), static_cast<T>(1.85218402142505803268146025319200184620073865036147924150565L), tol); in test_spots()
155 ….5), T(0.5)), static_cast<T>(1.10391193669599654696698383614539220889596741980833071370343L), tol); in test_spots()
158 …5), T(0.5)), static_cast<T>(0.971377398838178842823315157470233933307542433588855341182382L), tol); in test_spots()
161 ….5), T(0.5)), static_cast<T>(2.04464805020871497502900445828888632133468724223115900866414L), tol); in test_spots()
164 ….5), T(0.5)), static_cast<T>(1.13643979983097851593855424992691981204889859711476187519109L), tol); in test_spots()
167 ….5), T(0.5)), static_cast<T>(1.02946599457230050141998045852435702297405263760707971258676L), tol); in test_spots()
170 ….5), T(0.5)), static_cast<T>(2.10489563855842977359275221390569031239706339764770047142101L), tol); in test_spots()
[all …]
/dports/devel/R-cran-tidyr/tidyr/R/
H A Dseq.R14 full_seq <- function(x, period, tol = 1e-6) { argument
19 full_seq.numeric <- function(x, period, tol = 1e-6) { argument
21 if (any(((x - rng[1]) %% period > tol) &
22 (period - (x - rng[1]) %% period > tol))) {
28 if (period - ((rng[2] - rng[1]) %% period) <= tol) {
29 rng[2] <- rng[2] + tol
36 full_seq.Date <- function(x, period, tol = 1e-6) { argument
37 restore(x, full_seq(as.numeric(x), period, tol))
41 full_seq.POSIXct <- function(x, period, tol = 1e-6) { argument
42 restore(x, full_seq(as.numeric(x), period, tol))
/dports/lang/racket/racket-8.3/share/pkgs/drracket/drracket/
H A Dinfo.rkt36 (define tol-bow-error-color dark-red)
37 (define tol-bow-constants dark-green)
38 (define tol-black-on-white-colors
54 (drracket:check-syntax:set!d ,tol-bow-error-color)
63 (define tol-wob-constants light-blue)
64 (define tol-wob-error light-pink)
65 (define tol-white-on-black-colors
69 (framework:syntax-color:scheme:error ,tol-wob-error)
81 (drracket:check-syntax:set!d ,tol-wob-error)
101 'colors tol-black-on-white-colors)
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/gonum.org/v1/gonum/stat/distmv/
H A Dstatdist_test.go24 tol float64
32 tol: 3e-1,
46 if !scalar.EqualWithinAbsOrRel(want, got, test.tol, test.tol) {
63 tol float64
69 tol: 1e-2,
75 tol: 1e-2,
81 if !scalar.EqualWithinAbsOrRel(want, got, test.tol, test.tol) {
113 tol float64
121 tol: 1e-2,
141 if !scalar.EqualWithinAbsOrRel(ce, got, test.tol, test.tol) {
[all …]
/dports/science/py-scipy/scipy-1.7.1/scipy/sparse/linalg/isolve/tests/
H A Dtest_iterative.py216 x, info = solver(A, b, x0=x0, tol=tol)
221 assert_normclose(A.dot(x), b, tol=tol)
238 tol = 1e-8
257 x, info = solver(A, b, M=precond, x0=x0, tol=tol)
265 x, info = solver(A, b, x0=x0, tol=tol)
267 assert_normclose(A*x, b, tol=tol)
315 x, info = solver(A, b, M=precond, x0=x0, tol=tol)
428 x, info = solver(A, b, tol=tol)
432 x, info = solver(A, b, tol=tol, x0=ones(10))
441 x, info = solver(A, b, tol=tol, atol=tol)
[all …]
/dports/science/siconos/siconos-4.4.0/kernel/src/utils/SiconosAlgebra/test/
H A DSimpleMatrixTest.cpp47 tol = 1e-9; in setUp()
187 CPPUNIT_ASSERT_EQUAL_MESSAGE("testConstructor0 : ", test->normInf() < tol, true); in testConstructor0()
982 CPPUNIT_ASSERT_EQUAL_MESSAGE("testOperators: ", (*tmp)(i, j) < tol, true); in testOperators4()
1072 CPPUNIT_ASSERT_EQUAL_MESSAGE("testOperators: ", (*tmp)(i, j) < tol, true); in testOperators4bis()
2882 CPPUNIT_ASSERT_EQUAL_MESSAGE("testProd: ", fabs((*y)(i) - sum) < tol, true); in testProd()
2902 CPPUNIT_ASSERT_EQUAL_MESSAGE("testProd: ", fabs((*yB)(i) - sum) < tol, true); in testProd()
3247 CPPUNIT_ASSERT_EQUAL_MESSAGE("testProd4: ", fabs((*y)(i) - sum) < tol, true); in testProd4()
3258 CPPUNIT_ASSERT_EQUAL_MESSAGE("testProd4: ", fabs((*y)(i) - sum) < tol, true); in testProd4()
3270 CPPUNIT_ASSERT_EQUAL_MESSAGE("testProd4: ", fabs((*yB)(i) - sum) < tol, true); in testProd4()
3312 CPPUNIT_ASSERT_EQUAL_MESSAGE("testProd5: ", fabs((*y)(i) - sum) < tol, true); in testProd5()
[all …]

12345678910>>...672