Home
last modified time | relevance | path

Searched refs:norm_inf (Results 1 – 25 of 41) sorted by relevance

12

/third_party/boost/libs/numeric/ublas/test/
Dtest_complex_norms.cpp25 BOOST_UBLAS_DEBUG_TRACE( "norm is " << norm_inf(v) ); in BOOST_UBLAS_TEST_DEF()
26 BOOST_UBLAS_TEST_CHECK(std::abs(norm_inf(v) - expected) < TOL); in BOOST_UBLAS_TEST_DEF()
28 BOOST_UBLAS_TEST_CHECK(std::abs(norm_inf(v) - (3.0*expected)) < TOL); in BOOST_UBLAS_TEST_DEF()
70 BOOST_UBLAS_DEBUG_TRACE( "norm is " << norm_inf(v) ); in BOOST_UBLAS_TEST_DEF()
71 BOOST_UBLAS_TEST_CHECK(std::abs(norm_inf(v) - expected) < TOL); in BOOST_UBLAS_TEST_DEF()
73 BOOST_UBLAS_TEST_CHECK(std::abs(norm_inf(v) - (3.0*expected)) < TOL); in BOOST_UBLAS_TEST_DEF()
Dtest71.cpp96 n = ublas::norm_inf (v1); in test_with()
Dtest31.cpp112 n = ublas::norm_inf (v1); in test_with()
/third_party/boost/boost/numeric/odeint/external/mpi/
Dmpi_nested_algebra.hpp46 …static typename norm_result_type< typename NestedState::value_type >::type norm_inf( const NestedS… in BOOST_ODEINT_GEN_FOR_EACH()
50 result_type value = InnerAlgebra::norm_inf( s() ); in BOOST_ODEINT_GEN_FOR_EACH()
/third_party/boost/boost/numeric/ublas/
Dtraits.hpp217 real_type norm_inf (const_reference t) { in norm_inf() function
224 return self_type::norm_inf (t1 - t2) < BOOST_UBLAS_TYPE_CHECK_EPSILON * in equals()
225 (std::max) ((std::max) (self_type::norm_inf (t1), in equals()
226 self_type::norm_inf (t2)), in equals()
330 real_type norm_inf (const_reference t) { in norm_inf() function
340 return self_type::norm_inf (t1 - t2) < BOOST_UBLAS_TYPE_CHECK_EPSILON * in equals()
341 (std::max) ((std::max) (self_type::norm_inf (t1), in equals()
342 self_type::norm_inf (t2)), in equals()
Dfunctional.hpp584 real_type u (type_traits<value_type>::norm_inf (e () (i))); in apply()
596 real_type u (type_traits<value_type>::norm_inf (*it)); in apply()
609 real_type u (type_traits<value_type>::norm_inf (*it)); in apply()
642 real_type u (type_traits<value_type>::norm_inf (e () (i))); in apply()
658 real_type u (type_traits<value_type>::norm_inf (*it)); in apply()
675 real_type u (type_traits<value_type>::norm_inf (*it)); in apply()
1384 real_type v (type_traits<value_type>::norm_inf (e () (i, j))); in apply()
Dblas.hpp61 return norm_inf (v); in amax()
/third_party/boost/libs/numeric/odeint/test_external/mpi/
Dnorm_test.cpp45 int value = mpi_nested_algebra< range_algebra >::norm_inf( state ); in BOOST_AUTO_TEST_CASE()
50 << " local:" << range_algebra::norm_inf( state() ) in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/numeric/ublas/doc/samples/
Dex_triangular.cpp53 std::cout << "M = L + SU ? " << ((norm_inf( M - (L + SU) ) == 0.0)?"ok":"failed") << "\n"; in main()
54 std::cout << "M = U + SL ? " << ((norm_inf( M - (U + SL) ) == 0.0)?"ok":"failed") << "\n"; in main()
Dvector_unary_redux.cpp24 std::cout << norm_inf (v) << std::endl; in main()
/third_party/boost/boost/numeric/odeint/stepper/
Dcontrolled_adams_bashforth_moulton.hpp60 value_type errc = abs(m_algebra.norm_inf(xerr[2].m_v)); in adjust_order()
67 errm2 = abs(m_algebra.norm_inf(xerr[0].m_v)); in adjust_order()
71 errm1 = abs(m_algebra.norm_inf(xerr[1].m_v)); in adjust_order()
95 value_type errp = abs(m_algebra.norm_inf(xerr[3].m_v)); in adjust_order()
/third_party/boost/libs/numeric/odeint/test/
Drange_algebra.cpp118 BOOST_AUTO_TEST_CASE_TEMPLATE( norm_inf , algebra_type , algebra_types ) in BOOST_AUTO_TEST_CASE_TEMPLATE() argument
122 double nrm = algebra.norm_inf( x ); in BOOST_AUTO_TEST_CASE_TEMPLATE()
Dfusion_algebra.cpp177 BOOST_AUTO_TEST_CASE( norm_inf ) in BOOST_AUTO_TEST_CASE() argument
179 double nrm = algebra.norm_inf( fusion::make_vector( 1.0 , 2.0 , 3.0 ) ); in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/numeric/odeint/algebra/detail/
Dnorm_inf.hpp29 inline Value norm_inf( Iterator1 first1 , Iterator1 last1 , Value init ) in norm_inf() function
/third_party/boost/libs/numeric/odeint/test_external/vexcl/
Dnorm_inf.cpp11 BOOST_AUTO_TEST_CASE( norm_inf ) in BOOST_AUTO_TEST_CASE() argument
DJamfile.v231 [ run norm_inf.cpp OpenCL ]
/third_party/boost/boost/numeric/odeint/external/compute/
Dcompute_algebra.hpp50 static typename S::value_type norm_inf( const S &s ) { in norm_inf() function
/third_party/boost/boost/numeric/odeint/util/
Dublas_wrapper.hpp48 return boost::numeric::ublas::norm_inf( x ); in operator ()()
60 return boost::numeric::ublas::norm_inf( x ); in operator ()()
/third_party/boost/libs/numeric/odeint/test_external/nt2/
DJamfile.v239 [ run norm_inf.cpp ]
/third_party/boost/boost/numeric/ublas/detail/
Dvector_assign.hpp33 return norm_inf (e1 - e2) <= epsilon * in equals()
34 std::max<S> (std::max<S> (norm_inf (e1), norm_inf (e2)), min_norm); in equals()
/third_party/boost/boost/numeric/odeint/algebra/
Dmulti_array_algebra.hpp128 static typename norm_result_type<S>::type norm_inf( const S &s ) in norm_inf() function
130 …return detail::norm_inf( s.data() , s.data() + s.num_elements() , static_cast< typename norm_resu… in norm_inf()
Drange_algebra.hpp129 static typename norm_result_type<S>::type norm_inf( const S &s ) in norm_inf() function
131 return detail::norm_inf( boost::begin( s ) , boost::end( s ) , in norm_inf()
/third_party/boost/boost/numeric/odeint/stepper/detail/
Dpid_step_adjuster.hpp155 value_type ratio = 1 / m_algebra.norm_inf(err); in adjust_stepsize()
/third_party/boost/libs/multiprecision/test/ublas_interop/
Dtest71.cpp106 n = ublas::norm_inf(v1); in test_with()
/third_party/boost/boost/numeric/odeint/external/thrust/
Dthrust_algebra.hpp200 static typename S::value_type norm_inf( const S &s ) in norm_inf() function

12