Home
last modified time | relevance | path

Searched refs:x_bad (Results 1 – 18 of 18) sorted by relevance

/dports/math/p5-Math-SimpleVariable/Math-SimpleVariable-0.03/t/
H A D02func.t29 my $x_bad;
30 eval { $x_bad = new Math::SimpleVariable(value => 9.9) }; # no name => fatal error
/dports/math/stanmath/math-4.2.0/test/unit/math/prim/fun/
H A Dlb_transform_test.cpp205 Eigen::VectorXd x_bad(2); in TEST() local
206 x_bad << -10.0, -5.0; in TEST()
209 std::vector<Eigen::VectorXd> x_bad_vec = {x_bad, x_bad2}; in TEST()
213 EXPECT_THROW(stan::math::lb_free(x_bad, lbd), std::domain_error); in TEST()
214 EXPECT_THROW(stan::math::lb_free(x_bad, lb), std::domain_error); in TEST()
H A Dub_transform_test.cpp207 Eigen::VectorXd x_bad(2); in TEST() local
208 x_bad << 10.0, 5.0; in TEST()
211 std::vector<Eigen::VectorXd> x_bad_vec = {x_bad, x_bad2}; in TEST()
215 EXPECT_THROW(stan::math::ub_free(x_bad, ubd), std::domain_error); in TEST()
216 EXPECT_THROW(stan::math::ub_free(x_bad, ub), std::domain_error); in TEST()
H A Dgp_exponential_cov_test.cpp249 std::vector<double> x_bad(x); in TEST() local
250 x_bad[1] = std::numeric_limits<double>::quiet_NaN(); in TEST()
265 EXPECT_THROW(stan::math::gp_exponential_cov(x_bad, l, sigma), in TEST()
267 EXPECT_THROW(stan::math::gp_exponential_cov(x_bad, sigma_bad, l), in TEST()
269 EXPECT_THROW(stan::math::gp_exponential_cov(x_bad, sigma_bad, l_bad), in TEST()
271 EXPECT_THROW(stan::math::gp_exponential_cov(x_bad, sigma, l_bad), in TEST()
H A Dgp_matern52_cov_test.cpp379 std::vector<double> x_bad(x); in TEST() local
380 x_bad[1] = std::numeric_limits<double>::quiet_NaN(); in TEST()
401 EXPECT_THROW(stan::math::gp_matern52_cov(x_bad, l, sigma), std::domain_error); in TEST()
402 EXPECT_THROW(stan::math::gp_matern52_cov(x_bad, sigma_bad, l), in TEST()
404 EXPECT_THROW(stan::math::gp_matern52_cov(x_bad, sigma_bad, l_bad), in TEST()
406 EXPECT_THROW(stan::math::gp_matern52_cov(x_bad, sigma, l_bad), in TEST()
H A Dgp_matern32_cov_test.cpp303 std::vector<double> x_bad(x); in TEST() local
304 x_bad[1] = std::numeric_limits<double>::quiet_NaN(); in TEST()
320 EXPECT_THROW(stan::math::gp_matern32_cov(x_bad, l, sigma), std::domain_error); in TEST()
321 EXPECT_THROW(stan::math::gp_matern32_cov(x_bad, sigma_bad, l), in TEST()
323 EXPECT_THROW(stan::math::gp_matern32_cov(x_bad, sigma_bad, l_bad), in TEST()
325 EXPECT_THROW(stan::math::gp_matern32_cov(x_bad, sigma, l_bad), in TEST()
H A Dlub_transform_test.cpp549 Eigen::VectorXd x_bad(2); in TEST() local
550 x_bad << 10.0, 5.0; in TEST()
553 std::vector<Eigen::VectorXd> x_bad_vec = {x_bad, x_bad2}; in TEST()
557 EXPECT_THROW(stan::math::lub_free(x_bad, lbd, ubd), std::domain_error); in TEST()
558 EXPECT_THROW(stan::math::lub_free(x_bad, lbd, ub), std::domain_error); in TEST()
559 EXPECT_THROW(stan::math::lub_free(x_bad, lb, ubd), std::domain_error); in TEST()
560 EXPECT_THROW(stan::math::lub_free(x_bad, lb, ub), std::domain_error); in TEST()
H A Dgp_periodic_cov_test.cpp465 std::vector<double> x_bad(x); in TEST() local
466 x_bad[1] = std::numeric_limits<double>::quiet_NaN(); in TEST()
494 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l, p), in TEST()
496 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l, p_bad), in TEST()
498 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l_bad, p), in TEST()
500 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l, p), in TEST()
502 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l_bad, p_bad), in TEST()
504 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l, p_bad), in TEST()
506 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l_bad, p), in TEST()
508 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l_bad, p_bad), in TEST()
H A Dgp_exp_quad_cov_test.cpp242 std::vector<double> x_bad(x); in TEST() local
243 x_bad[1] = std::numeric_limits<double>::quiet_NaN(); in TEST()
263 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma, l), std::domain_error); in TEST()
264 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma_bad, l), in TEST()
266 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma, l_bad), in TEST()
268 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma_bad, l_bad), in TEST()
H A Dcov_exp_quad_test.cpp384 std::vector<double> x_bad(x); in TEST() local
385 x_bad[1] = std::numeric_limits<double>::quiet_NaN(); in TEST()
403 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma, l), std::domain_error); in TEST()
404 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma_bad, l), in TEST()
406 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma, l_bad), in TEST()
408 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma_bad, l_bad), in TEST()
/dports/finance/quantlib/QuantLib-1.20/test-suite/
H A Dinterpolations.cpp376 Real x_bad = 11.0; in testSplineOnRPN15AValues() local
377 interpolated = f(x_bad); in testSplineOnRPN15AValues()
381 << "at x = " << x_bad in testSplineOnRPN15AValues()
400 interpolated = f(x_bad); in testSplineOnRPN15AValues()
404 << "at x = " << x_bad in testSplineOnRPN15AValues()
420 interpolated = f(x_bad); in testSplineOnRPN15AValues()
424 << "at x = " << x_bad in testSplineOnRPN15AValues()
440 interpolated = f(x_bad); in testSplineOnRPN15AValues()
444 << "at x = " << x_bad in testSplineOnRPN15AValues()
463 interpolated = f(x_bad); in testSplineOnRPN15AValues()
[all …]
/dports/math/stanmath/math-4.2.0/test/unit/math/rev/functor/
H A Dutil_algebra_solver.hpp362 Eigen::VectorXd x_bad(static_cast<Eigen::VectorXd::Index>(0)); in error_conditions_test() local
367 EXPECT_THROW_MSG(general_algebra_solver(is_newton, f, x_bad, y, dat, dat_int), in error_conditions_test()
/dports/math/stanmath/math-4.2.0/test/unit/math/rev/fun/
H A Dcov_exp_quad_test.cpp971 std::vector<var> x_bad(x); in TEST() local
972 x_bad[1] = std::numeric_limits<var>::quiet_NaN(); in TEST()
990 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma, l), std::domain_error); in TEST()
991 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma_bad, l), in TEST()
993 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma, l_bad), in TEST()
995 EXPECT_THROW(stan::math::cov_exp_quad(x_bad, sigma_bad, l_bad), in TEST()
H A Dgp_exp_quad_cov_test.cpp982 std::vector<var> x_bad(x); in TEST() local
983 x_bad[1] = std::numeric_limits<var>::quiet_NaN(); in TEST()
1002 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma, l), std::domain_error); in TEST()
1003 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma_bad, l), in TEST()
1005 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma, l_bad), in TEST()
1007 EXPECT_THROW(stan::math::gp_exp_quad_cov(x_bad, sigma_bad, l_bad), in TEST()
H A Dgp_periodic_cov_test.cpp2153 std::vector<var> x_bad(x); in TEST() local
2154 x_bad[1] = std::numeric_limits<var>::quiet_NaN(); in TEST()
2181 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l, p), in TEST()
2183 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l, p_bad), in TEST()
2185 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l_bad, p), in TEST()
2187 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l, p), in TEST()
2189 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma, l_bad, p_bad), in TEST()
2191 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l, p_bad), in TEST()
2193 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l_bad, p), in TEST()
2195 EXPECT_THROW(stan::math::gp_periodic_cov(x_bad, sigma_bad, l_bad, p_bad), in TEST()
/dports/security/libgcrypt/libgcrypt-1.9.4/mpi/
H A Dec.c2055 gcry_mpi_t x_bad; in _gcry_mpi_ec_bad_point() local
2057 for (i = 0; (x_bad = ctx->t.scratch[i]); i++) in _gcry_mpi_ec_bad_point()
2058 if (!mpi_cmp (point->x, x_bad)) in _gcry_mpi_ec_bad_point()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/libgcrypt/mpi/
H A Dec.c2055 gcry_mpi_t x_bad; in _gcry_mpi_ec_bad_point() local
2057 for (i = 0; (x_bad = ctx->t.scratch[i]); i++) in _gcry_mpi_ec_bad_point()
2058 if (!mpi_cmp (point->x, x_bad)) in _gcry_mpi_ec_bad_point()
/dports/devel/py-mypy/mypy-0.910/test-data/unit/
H A Dcmdline.test531 x_bad = 0