Home
last modified time | relevance | path

Searched refs:sobol (Results 1 – 25 of 172) sorted by relevance

1234567

/dports/math/p5-Math-GSL/Math-GSL-0.43/t/
H A DQRNG.t27 my $state = gsl_qrng_state($self->{sobol});
28 my $size = gsl_qrng_size($self->{sobol});
39 my $droid = gsl_qrng_clone($self->{sobol});
45 my $name = gsl_qrng_name($self->{sobol});
46 cmp_ok($name,'eq','sobol', 'gsl_qrng_name == sobol' );
68 isa_ok($sobol, "Math::GSL::QRNG::Sobol");
71 my @state = $sobol->get();
74 $sobol->reinit();
75 @state = $sobol->get();
78 is($sobol->name(), "sobol", "QRNG name acessible");
[all …]
/dports/graphics/argyllcms/Argyll_V1.9.2/numlib/
H A Dsobol.c105 static int next_sobol(sobol *s, double * v) in next_sobol()
128 static void del_sobol(sobol *s) { in del_sobol()
134 static void reset_sobol(sobol *s) { in reset_sobol()
144 sobol *new_sobol(int dim) { in new_sobol()
145 sobol *s = NULL; in new_sobol()
152 if ((s = (sobol *)malloc(sizeof(sobol))) == NULL) { in new_sobol()
H A Dsobol.h33 }; typedef struct _sobol sobol; typedef
36 sobol *new_sobol(int dim);
H A Dafiles28 sobol.c
29 sobol.h
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/C3/src/lib_probability/
H A Dprobability.c437 if (sobol == NULL){ in c3_sobol_sensitivity_calculate()
441 sobol->dim = dim; in c3_sobol_sensitivity_calculate()
443 sobol->max_order = order; in c3_sobol_sensitivity_calculate()
446 if (sobol->interactions == NULL){ in c3_sobol_sensitivity_calculate()
454 ft,sobol); in c3_sobol_sensitivity_calculate()
469 sobol->total_effects[ii] = (sobol->variance - vari)/sobol->variance; in c3_sobol_sensitivity_calculate()
473 return sobol; in c3_sobol_sensitivity_calculate()
529 return sobol->total_effects[var]; in c3_sobol_sensitivity_get_total()
542 return sobol->interactions[var]->vari; in c3_sobol_sensitivity_get_main()
555 return sobol->variance; in c3_sobol_sensitivity_get_variance()
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/C3/test/lib_probability_test/
H A Dprob_test.c96 double var = c3_sobol_sensitivity_get_variance(sobol); in Test_sobol()
99 c3_sobol_sensitivity_get_total(sobol,0), in Test_sobol()
102 c3_sobol_sensitivity_get_total(sobol,1), in Test_sobol()
108 sobol,1,&main_effect)/var,1e-9); in Test_sobol()
112 sobol,1,&main_effect)/var,1e-9); in Test_sobol()
118 sobol,2,main_effects)/var,1e-9); in Test_sobol()
121 c3_sobol_sensitivity_free(sobol); in Test_sobol()
171 struct C3SobolSensitivity * sobol = in Test_sobol2() local
204 sobol,2,vars),1e-2); in Test_sobol2()
224 sobol,3,vars3),1e-2); in Test_sobol2()
[all …]
/dports/math/openturns/openturns-1.18/python/test/
H A Dt_FunctionalChaos_nd.py11 def sobol(indices, a): function
74 sob_1[0] = sobol(indices, kappa) / covTh_Sobol
76 sob_1[1] = sobol(indices, kappa) / covTh_Sobol
78 sob_1[2] = sobol(indices, kappa) / covTh_Sobol
87 sob_2[0] = sobol(indices, kappa) / covTh_Sobol
89 sob_2[1] = sobol(indices, kappa) / covTh_Sobol
92 sob_2[2] = sobol(indices, kappa) / covTh_Sobol
102 sob_3[0] = sobol(indices, kappa) / covTh_Sobol
H A Dt_FunctionalChaos_gsobol.py11 def sobol(indice, ai): function
115 fabs(value - sobol(indices, a) / covTh))
124 value - sobol(indices, a) / covTh))
132 fabs(value - sobol(indices, a) / covTh))
/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_FunctionalChaos_nd.cxx27 inline Scalar sobol(const Indices & indices, in sobol() function
96 sob_1[0] = sobol(indices, kappa) / covTh_Sobol; in main()
98 sob_1[1] = sobol(indices, kappa) / covTh_Sobol; in main()
100 sob_1[2] = sobol(indices, kappa) / covTh_Sobol; in main()
111 sob_2[0] = sobol(indices, kappa) / covTh_Sobol; in main()
113 sob_2[1] = sobol(indices, kappa) / covTh_Sobol; in main()
116 sob_2[2] = sobol(indices, kappa) / covTh_Sobol; in main()
128 sob_3[0] = sobol(indices, kappa) / covTh_Sobol; in main()
H A Dt_FunctionalChaos_gsobol.cxx27 Scalar sobol(const Indices & indices, in sobol() function
154 …te error=" << std::scientific << std::setprecision(1) << std::abs(value - sobol(indices, a) / covT… in main()
165 …te error=" << std::scientific << std::setprecision(1) << std::abs(value - sobol(indices, a) / covT… in main()
174 …te error=" << std::scientific << std::setprecision(1) << std::abs(value - sobol(indices, a) / covT… in main()
179 Scalar exactS = sobol(indices, a) / covTh; in main()
/dports/math/py-pygsl/pygsl-2.3.0/pygsl/
H A Dqrng.py21 def sobol(dimension): function
27 return _qrng.sobol(dimension)
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/
H A DC3FnTrainData.hpp190 struct C3SobolSensitivity * sobol();
192 void sobol(struct C3SobolSensitivity * ss);
273 inline struct C3SobolSensitivity * C3FnTrainData::sobol() in sobol() function in Dakota::C3FnTrainData
277 inline void C3FnTrainData::sobol(struct C3SobolSensitivity * ss) in sobol() function in Dakota::C3FnTrainData
/dports/devel/boost-docs/boost_1_72_0/libs/random/test/
H A Dsobol_validate.cpp351 QRNG_VALIDATION_TEST_FUNCTIONS(sobol)
352 QRNG_VALIDATION_TEST_DISCARD(sobol) in QRNG_VALIDATION_TEST_DISCARD() argument
/dports/devel/boost-python-libs/boost_1_72_0/libs/random/test/
H A Dsobol_validate.cpp351 QRNG_VALIDATION_TEST_FUNCTIONS(sobol)
352 QRNG_VALIDATION_TEST_DISCARD(sobol) in QRNG_VALIDATION_TEST_DISCARD() argument
/dports/devel/boost-libs/boost_1_72_0/libs/random/test/
H A Dsobol_validate.cpp351 QRNG_VALIDATION_TEST_FUNCTIONS(sobol)
352 QRNG_VALIDATION_TEST_DISCARD(sobol) in QRNG_VALIDATION_TEST_DISCARD() argument
/dports/devel/hyperscan/boost_1_75_0/libs/random/test/
H A Dsobol_validate.cpp351 QRNG_VALIDATION_TEST_FUNCTIONS(sobol)
352 QRNG_VALIDATION_TEST_DISCARD(sobol) in QRNG_VALIDATION_TEST_DISCARD() argument
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/docs/KeywordMetadata/
H A DDUPLICATE-dimension_adaptive6 …inement process. Techniques include either sobol or generalized for stochastic collocation and ei…
/dports/finance/quantlib/QuantLib-1.20/test-suite/
H A Dbrownianbridge.cpp83 SobolRsg sobol(N, seed); in testVariates() local
84 InverseCumulativeRsg<SobolRsg,InverseCumulativeNormal> generator(sobol); in testVariates()
205 SobolRsg sobol(N, seed); in testPathGeneration() local
206 InverseCumulativeRsg<SobolRsg,InverseCumulativeNormal> gsg(sobol); in testPathGeneration()
/dports/devel/boost-docs/boost_1_72_0/boost/random/
H A Dsobol.hpp110 typedef detail::qrng_tables::sobol default_sobol_table;
231 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef
/dports/devel/hyperscan/boost_1_75_0/boost/random/
H A Dsobol.hpp110 typedef detail::qrng_tables::sobol default_sobol_table;
231 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef
/dports/devel/boost-python-libs/boost_1_72_0/boost/random/
H A Dsobol.hpp110 typedef detail::qrng_tables::sobol default_sobol_table;
231 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef
/dports/devel/R-cran-BH/BH/inst/include/boost/random/
H A Dsobol.hpp111 typedef detail::qrng_tables::sobol default_sobol_table;
232 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/random/
H A Dsobol.hpp110 typedef detail::qrng_tables::sobol default_sobol_table;
231 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/random/
H A Dsobol.hpp110 typedef detail::qrng_tables::sobol default_sobol_table;
231 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/bundled/boost-1.70.0/include/boost/random/
H A Dsobol.hpp110 typedef detail::qrng_tables::sobol default_sobol_table;
231 typedef sobol_engine<boost::uint_least64_t, 64u, default_sobol_table> sobol; typedef

1234567