/third_party/boost/libs/numeric/ublas/test/ |
D | test_complex_norms.cpp | 25 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()
|
D | test71.cpp | 96 n = ublas::norm_inf (v1); in test_with()
|
D | test31.cpp | 112 n = ublas::norm_inf (v1); in test_with()
|
/third_party/boost/boost/numeric/odeint/external/mpi/ |
D | mpi_nested_algebra.hpp | 46 …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/ |
D | traits.hpp | 217 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()
|
D | functional.hpp | 584 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()
|
D | blas.hpp | 61 return norm_inf (v); in amax()
|
/third_party/boost/libs/numeric/odeint/test_external/mpi/ |
D | norm_test.cpp | 45 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/ |
D | ex_triangular.cpp | 53 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()
|
D | vector_unary_redux.cpp | 24 std::cout << norm_inf (v) << std::endl; in main()
|
/third_party/boost/boost/numeric/odeint/stepper/ |
D | controlled_adams_bashforth_moulton.hpp | 60 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/ |
D | range_algebra.cpp | 118 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()
|
D | fusion_algebra.cpp | 177 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/ |
D | norm_inf.hpp | 29 inline Value norm_inf( Iterator1 first1 , Iterator1 last1 , Value init ) in norm_inf() function
|
/third_party/boost/libs/numeric/odeint/test_external/vexcl/ |
D | norm_inf.cpp | 11 BOOST_AUTO_TEST_CASE( norm_inf ) in BOOST_AUTO_TEST_CASE() argument
|
D | Jamfile.v2 | 31 [ run norm_inf.cpp OpenCL ]
|
/third_party/boost/boost/numeric/odeint/external/compute/ |
D | compute_algebra.hpp | 50 static typename S::value_type norm_inf( const S &s ) { in norm_inf() function
|
/third_party/boost/boost/numeric/odeint/util/ |
D | ublas_wrapper.hpp | 48 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/ |
D | Jamfile.v2 | 39 [ run norm_inf.cpp ]
|
/third_party/boost/boost/numeric/ublas/detail/ |
D | vector_assign.hpp | 33 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/ |
D | multi_array_algebra.hpp | 128 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()
|
D | range_algebra.hpp | 129 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/ |
D | pid_step_adjuster.hpp | 155 value_type ratio = 1 / m_algebra.norm_inf(err); in adjust_stepsize()
|
/third_party/boost/libs/multiprecision/test/ublas_interop/ |
D | test71.cpp | 106 n = ublas::norm_inf(v1); in test_with()
|
/third_party/boost/boost/numeric/odeint/external/thrust/ |
D | thrust_algebra.hpp | 200 static typename S::value_type norm_inf( const S &s ) in norm_inf() function
|