Home
last modified time | relevance | path

Searched refs:y_a (Results 1 – 25 of 145) sorted by relevance

123456

/dports/math/py-or-tools/or-tools-9.2/examples/flatzinc/
H A Denigma_eight_times2.fzn17 array [1..5] of var 0..9: y_a :: output_array([1..5]);
18 …all_different_int([x_a[1], x_a[2], x_a[3], x_a[4], x_a[5], y_a[1], y_a[2], y_a[3], y_a[4], y_a[5]]…
21 …t int_lin_eq([-1, 10000, 1000, 100, 10, 1], [INT____00003, y_a[1], y_a[2], y_a[3], y_a[4], y_a[5]]…
22 …, 1, 1, 1, 1, 1], [x_a[1], x_a[2], x_a[3], x_a[4], x_a[5], y_a[1], y_a[2], y_a[3], y_a[4], y_a[5]]…
23 solve :: int_search([x_a[1], x_a[2], x_a[3], x_a[4], x_a[5], y_a[1], y_a[2], y_a[3], y_a[4], y_a[5…
H A Dsuccessive_number_problem.fzn7 array [1..3] of var 0..9: y_a;
15 constraint int_lin_eq([-1, 100, 10, 1], [INT____00004, y_a[1], y_a[2], y_a[3]], 0);
/dports/misc/openmvg/openMVG-2.0/src/third_party/ceres-solver/internal/ceres/
H A Dblock_sparse_matrix_test.cc79 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
91 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
98 A_->SquaredColumnNorm(y_a.data()); in TEST_F()
100 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
130 y_a.setZero(); in TEST_F()
135 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
151 Vector y_a, y_b; in TEST_F() local
152 y_a.resize(A_->num_rows()); in TEST_F()
157 y_a.setZero(); in TEST_F()
173 y_a.resize(A_->num_rows()); in TEST_F()
[all …]
/dports/math/ceres-solver/ceres-solver-2.0.0/internal/ceres/
H A Dblock_sparse_matrix_test.cc80 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
92 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
99 A_->SquaredColumnNorm(y_a.data()); in TEST_F()
101 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
131 y_a.setZero(); in TEST_F()
136 EXPECT_LT((y_a - y_b).norm(), 1e-12); in TEST_F()
152 Vector y_a, y_b; in TEST_F() local
153 y_a.resize(A_->num_rows()); in TEST_F()
158 y_a.setZero(); in TEST_F()
174 y_a.resize(A_->num_rows()); in TEST_F()
[all …]
/dports/science/conduit/conduit-0.8.0/src/libs/blueprint/
H A Dconduit_blueprint_mcarray_examples.cpp69 float64_array y_a = res["y"].value(); in xyz_interleaved() local
75 y_a[i] = 2.0; in xyz_interleaved()
92 float64_array y_a = res["y"].value(); in xyz_separate() local
98 y_a[i] = 2.0; in xyz_separate()
124 float64_array y_a = res["y"].value(); in xyz_contiguous() local
130 y_a[i] = 2.0; in xyz_contiguous()
158 float64_array y_a = res["y"].value(); in xyz_interleaved_mixed_type() local
164 y_a[i] = 2.0; in xyz_interleaved_mixed_type()
/dports/devel/py-gtfslib/gtfslib-1.0.0/gtfslib/
H A Dspatial.py44 y_p, y_a, y_b = map(lambda q: math.radians(q.lon()) * cos_p, [p, a, b])
47 l2 = (x_a - x_b) * (x_a - x_b) + (y_a - y_b) * (y_a - y_b)
50 d2 = (x_p - x_a) * (x_p - x_a) + (y_p - y_a) * (y_p - y_a)
56 t = ((x_p - x_a) * (x_b - x_a) + (y_p - y_a) * (y_b - y_a)) / l2
59 d2 = (x_p - x_a) * (x_p - x_a) + (y_p - y_a) * (y_p - y_a)
70 yC = y_a + t * (y_b - y_a)
/dports/math/py-pygsl/pygsl-2.3.0/src/gslwrap/
H A Dinterpolation2d.i51 const double * y_a; member
179 if(y_a == NULL){ in pygsl_interp2d_eval_array_func()
185 op[1] = y_a; in pygsl_interp2d_eval_array_func()
261 Py_DECREF(y_a); in pygsl_interp2d_eval_array_func()
286 Py_XDECREF(y_a); in pygsl_interp2d_eval_array_func()
303 self->y_a = NULL; in pygsl_interp2d_free_array_objects()
529 if(y_a == NULL){ in init()
540 y_d = (double *) PyArray_DATA(y_a); in init()
548 Py_DECREF(y_a); in init()
554 Py_XDECREF(y_a); in init()
[all …]
/dports/math/py-keras/Keras-2.4.3/tests/keras/
H A Dmetrics_functional_test.py32 y_a = K.variable(np.random.random((6, 7)))
34 output = metric(y_a, y_b)
40 y_a = K.variable(np.random.randint(0, 7, (6,)), dtype=K.floatx())
42 assert K.eval(metric(y_a, y_b)).shape == (6,)
47 y_a = K.variable(np.random.randint(0, 7, shape), dtype=K.floatx())
51 y_a_dense_labels = K.cast(K.one_hot(K.cast(y_a, dtype='int32'), 7),
53 sparse_categorical_acc = metrics.sparse_categorical_accuracy(y_a, y_b)
/dports/graphics/yafaray/libYafaRay-3.5.1/include/utilities/
H A Dmcqmc.h162 #define y_a 1791398085 macro
163 #define y_ah (y_a >> 16)
164 #define y_al (y_a & 65535)
174 x = x * y_a + c; in operator()
183 #undef y_a
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/crypto/ecdh/
H A Decdhtest.c127 BIGNUM *x_a=NULL, *y_a=NULL, in test_ecdh_curve() local
142 if ((y_a=BN_new()) == NULL) goto err; in test_ecdh_curve()
159 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
164 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
172 BN_print(out,y_a); in test_ecdh_curve()
250 BN_print(out, y_a); in test_ecdh_curve()
291 if (y_a) BN_free(y_a); in test_ecdh_curve()
/dports/net/p5-Socket-Class/Socket-Class-2.258/xs/sc_ssl/openssl/source/test/
H A Decdhtest.c127 BIGNUM *x_a=NULL, *y_a=NULL, in test_ecdh_curve() local
142 if ((y_a=BN_new()) == NULL) goto err; in test_ecdh_curve()
159 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
164 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
172 BN_print(out,y_a); in test_ecdh_curve()
250 BN_print(out, y_a); in test_ecdh_curve()
291 if (y_a) BN_free(y_a); in test_ecdh_curve()
/dports/math/saga/saga-8.1.3/saga-gis/src/saga_core/saga_gui/
H A Dwksp_map_dc.cpp299 void CWKSP_Map_DC::IMG_Set_Rect(int x_a, int y_a, int x_b, int y_b, int Color) in IMG_Set_Rect() argument
301 if( y_a > y_b ) { double y = y_a; y_a = y_b; y_b = y; } in IMG_Set_Rect()
302 if( y_a < 0 ) { y_a = 0; } in IMG_Set_Rect()
310 for(int y=y_a; y<y_b; y++) in IMG_Set_Rect()
/dports/math/py-pygsl/pygsl-2.3.0/src/callback/
H A Dgsl_multifit_robust.i176 PyArrayObject *y_a = NULL, *y_err_a = NULL; in pygsl_multifit_robust_est_vector() local
185 y_a = PyGSL_New_Array(1, &dim, NPY_DOUBLE); in pygsl_multifit_robust_est_vector()
186 if(y_a == NULL){ in pygsl_multifit_robust_est_vector()
194 y_p = (double *) PyArray_DATA(y_a); in pygsl_multifit_robust_est_vector()
211 PyTuple_SetItem(returnobj, 0, (PyObject *) y_a); in pygsl_multifit_robust_est_vector()
220 Py_XDECREF(y_a); in pygsl_multifit_robust_est_vector()
/dports/textproc/miller/miller-5.10.2/go/reg-test/expected/
H A Dcase-dsl-break-continue.sh.out1906 1 y_a pan
1926 2 y_a eks
1946 3 y_a wye
1966 4 y_a eks
1986 5 y_a wye
2006 6 y_a zee
2026 7 y_a eks
2046 8 y_a zee
2066 9 y_a hat
2086 10 y_a pan
[all …]
/dports/math/py-pygsl/pygsl-2.3.0/examples/
H A Dinterpolation2d.py8 y_a = np.array([0,1])
12 y_size = len(y_a)
15 intp.init(x_a, y_a, z_a)
39 sp.init(x_a, y_a, z_a)
/dports/devel/R-cran-future.apply/future.apply/tests/
H A Dfuture_lapply.R8 y_a <- lapply(x_a, FUN = base::vector, length = 2L) globalVar
9 str(list(y_a = y_a)) nameattr
41 stopifnot(identical(y, y_a))
46 stopifnot(identical(y, y_a))
/dports/security/openssl-legacy-static/openssl-1.0.2u/crypto/ecdh/
H A Decdhtest.c127 BIGNUM *x_a = NULL, *y_a = NULL, *x_b = NULL, *y_b = NULL; in test_ecdh_curve() local
142 if ((y_a = BN_new()) == NULL) in test_ecdh_curve()
163 (group, EC_KEY_get0_public_key(a), x_a, y_a, ctx)) in test_ecdh_curve()
170 x_a, y_a, ctx)) in test_ecdh_curve()
180 BN_print(out, y_a); in test_ecdh_curve()
262 BN_print(out, y_a); in test_ecdh_curve()
302 if (y_a) in test_ecdh_curve()
303 BN_free(y_a); in test_ecdh_curve()
/dports/security/openssl-unsafe/openssl-c9ba19c/crypto/ecdh/
H A Decdhtest.c127 BIGNUM *x_a = NULL, *y_a = NULL, *x_b = NULL, *y_b = NULL; in test_ecdh_curve() local
142 if ((y_a = BN_new()) == NULL) in test_ecdh_curve()
163 (group, EC_KEY_get0_public_key(a), x_a, y_a, ctx)) in test_ecdh_curve()
170 x_a, y_a, ctx)) in test_ecdh_curve()
180 BN_print(out, y_a); in test_ecdh_curve()
262 BN_print(out, y_a); in test_ecdh_curve()
302 if (y_a) in test_ecdh_curve()
303 BN_free(y_a); in test_ecdh_curve()
/dports/security/libressl-static/libressl-3.3.5/tests/
H A Decdhtest.c103 BIGNUM *x_a = NULL, *y_a = NULL, *x_b = NULL, *y_b = NULL; in test_ecdh_curve() local
119 if ((y_a = BN_new()) == NULL) in test_ecdh_curve()
136 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
141 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
190 BN_print(out, y_a); in test_ecdh_curve()
225 BN_free(y_a); in test_ecdh_curve()
/dports/security/libressl/libressl-3.4.3/tests/
H A Decdhtest.c103 BIGNUM *x_a = NULL, *y_a = NULL, *x_b = NULL, *y_b = NULL; in test_ecdh_curve() local
119 if ((y_a = BN_new()) == NULL) in test_ecdh_curve()
136 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
141 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
190 BN_print(out, y_a); in test_ecdh_curve()
225 BN_free(y_a); in test_ecdh_curve()
/dports/www/obhttpd/libressl-3.4.1/tests/
H A Decdhtest.c103 BIGNUM *x_a = NULL, *y_a = NULL, *x_b = NULL, *y_b = NULL; in test_ecdh_curve() local
119 if ((y_a = BN_new()) == NULL) in test_ecdh_curve()
136 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
141 EC_KEY_get0_public_key(a), x_a, y_a, ctx)) goto err; in test_ecdh_curve()
190 BN_print(out, y_a); in test_ecdh_curve()
225 BN_free(y_a); in test_ecdh_curve()
/dports/math/py-pygsl/pygsl-2.3.0/src/bspline/
H A Dbspline.i308 PyArrayObject *y_a = NULL, *yerr_a = NULL;
319 y_a = PyGSL_New_Array(1, &size, NPY_DOUBLE);
320 if(y_a == NULL)
326 y_d = (double *) PyArray_DATA(y_a);
335 return Py_BuildValue("(OO)", y_a, yerr_a);
338 Py_XDECREF(y_a);
H A Dbspline2.i348 PyArrayObject *y_a = NULL, *yerr_a = NULL; in eval_dep_yerr_vector() local
359 y_a = PyGSL_New_Array(1, &size, NPY_DOUBLE); in eval_dep_yerr_vector()
360 if(y_a == NULL) in eval_dep_yerr_vector()
366 y_d = (double *) PyArray_DATA(y_a); in eval_dep_yerr_vector()
375 return Py_BuildValue("(OO)", y_a, yerr_a); in eval_dep_yerr_vector()
378 Py_XDECREF(y_a); in eval_dep_yerr_vector()
/dports/science/chrono/chrono-7.0.1/src/chrono/motion_functions/
H A DChFunction_Integrate.cpp40 double x_a, x_b, y_a, y_b, F_b; in ComputeIntegral() local
49 y_a = this->fa->Get_y(x_a); in ComputeIntegral()
52 F_b = F_sum + mstep * (y_a + y_b) * 0.5; in ComputeIntegral()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/MC/AArch64/
H A Derror-location.s17 .word x_a - y_a
50 y_a: label

123456