Home
last modified time | relevance | path

Searched refs:is_resizeable (Results 1 – 25 of 61) sorted by relevance

123

/third_party/boost/libs/numeric/odeint/test/
Dis_resizeable.cpp54 struct is_resizeable< my_seq2< T > > : boost::true_type {}; struct
62 BOOST_CHECK( is_resizeable< std::vector< int > >::value ); in BOOST_AUTO_TEST_CASE()
67 BOOST_CHECK( !( is_resizeable< double >::value ) ); in BOOST_AUTO_TEST_CASE()
73 BOOST_CHECK( is_resizeable< state_type >::value ); in BOOST_AUTO_TEST_CASE()
79 BOOST_CHECK( !( is_resizeable< state_type >::value ) ); in BOOST_AUTO_TEST_CASE()
85 BOOST_CHECK( is_resizeable< state_type >::value); in BOOST_AUTO_TEST_CASE()
91 BOOST_CHECK( is_resizeable< state_type >::value ); in BOOST_AUTO_TEST_CASE()
105 BOOST_CHECK( !( is_resizeable< state_type >::value ) ); in BOOST_AUTO_TEST_CASE()
110 BOOST_CHECK( !is_resizeable< my_seq1< double > >::value ); in BOOST_AUTO_TEST_CASE()
115 BOOST_CHECK( is_resizeable< my_seq2< double > >::value ); in BOOST_AUTO_TEST_CASE()
Dmulti_array.cpp45 BOOST_CHECK( is_resizeable< vector_type >::value ); in BOOST_AUTO_TEST_CASE()
46 BOOST_CHECK( is_resizeable< matrix_type >::value ); in BOOST_AUTO_TEST_CASE()
47 BOOST_CHECK( is_resizeable< tensor_type >::value ); in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/numeric/odeint/stepper/
Drosenbrock4.hpp302 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
303 …resized |= adjust_size_by_resizeability( m_dfdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
304 …resized |= adjust_size_by_resizeability( m_dxdtnew , x , typename is_resizeable<deriv_type>::type(… in resize_impl()
305 …resized |= adjust_size_by_resizeability( m_xtmp , x , typename is_resizeable<state_type>::type() ); in resize_impl()
306 … resized |= adjust_size_by_resizeability( m_g1 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
307 … resized |= adjust_size_by_resizeability( m_g2 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
308 … resized |= adjust_size_by_resizeability( m_g3 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
309 … resized |= adjust_size_by_resizeability( m_g4 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
310 … resized |= adjust_size_by_resizeability( m_g5 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
311 …resized |= adjust_size_by_resizeability( m_cont3 , x , typename is_resizeable<state_type>::type() … in resize_impl()
[all …]
Dimplicit_euler.hpp135 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
136 … resized |= adjust_size_by_resizeability( m_x , x , typename is_resizeable<state_type>::type() ); in resize_impl()
137 … resized |= adjust_size_by_resizeability( m_b , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
138 …resized |= adjust_size_by_resizeability( m_jacobi , x , typename is_resizeable<matrix_type>::type(… in resize_impl()
139 …resized |= adjust_size_by_resizeability( m_pm , x , typename is_resizeable<pmatrix_type>::type() ); in resize_impl()
Drunge_kutta_cash_karp54_classic.hpp195 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl()
196 … resized |= adjust_size_by_resizeability( m_k2 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
197 … resized |= adjust_size_by_resizeability( m_k3 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
198 … resized |= adjust_size_by_resizeability( m_k4 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
199 … resized |= adjust_size_by_resizeability( m_k5 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
200 … resized |= adjust_size_by_resizeability( m_k6 , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
Ddense_output_runge_kutta.hpp253 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
254 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
370 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize()
371 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize()
372 …resized |= adjust_size_by_resizeability( m_dxdt1 , x , typename is_resizeable<deriv_type>::type() … in resize()
373 …resized |= adjust_size_by_resizeability( m_dxdt2 , x , typename is_resizeable<deriv_type>::type() … in resize()
Drunge_kutta4_classic.hpp153 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl()
154 … resized |= adjust_size_by_resizeability( m_dxm , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
155 … resized |= adjust_size_by_resizeability( m_dxt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
156 … resized |= adjust_size_by_resizeability( m_dxh , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
Dmodified_midpoint.hpp141 … resized |= adjust_size_by_resizeability( m_x0 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
142 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
143 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
263 … resized |= adjust_size_by_resizeability( m_x0 , x , typename is_resizeable<state_type>::type() ); in resize()
264 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize()
Drunge_kutta_dopri5.hpp287 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_k_x_tmp_impl()
288 … resized |= adjust_size_by_resizeability( m_k2 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl()
289 … resized |= adjust_size_by_resizeability( m_k3 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl()
290 … resized |= adjust_size_by_resizeability( m_k4 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl()
291 … resized |= adjust_size_by_resizeability( m_k5 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl()
292 … resized |= adjust_size_by_resizeability( m_k6 , x , typename is_resizeable<deriv_type>::type() ); in resize_k_x_tmp_impl()
299 …return adjust_size_by_resizeability( m_dxdt_tmp , x , typename is_resizeable<deriv_type>::type() ); in resize_dxdt_tmp_impl()
Dbulirsch_stoer_dense_out.hpp603 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
604 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
605 …resized |= adjust_size_by_resizeability( m_dxdt1 , x , typename is_resizeable<state_type>::type() … in resize_impl()
606 …resized |= adjust_size_by_resizeability( m_dxdt2 , x , typename is_resizeable<state_type>::type() … in resize_impl()
607 … resized |= adjust_size_by_resizeability( m_err , x , typename is_resizeable<state_type>::type() ); in resize_impl()
610 …resized |= adjust_size_by_resizeability( m_table[i] , x , typename is_resizeable<state_type>::type… in resize_impl()
612 …resized |= adjust_size_by_resizeability( m_mp_states[i] , x , typename is_resizeable<state_type>::… in resize_impl()
615 …esized |= adjust_size_by_resizeability( m_derivs[i][j] , x , typename is_resizeable<deriv_type>::t… in resize_impl()
618 …resized |= adjust_size_by_resizeability( m_diffs[i][j] , x , typename is_resizeable<deriv_type>::t… in resize_impl()
Dcontrolled_runge_kutta.hpp489 … return adjust_size_by_resizeability( m_xerr , x , typename is_resizeable<state_type>::type() ); in resize_m_xerr_impl()
495 … return adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_m_dxdt_impl()
501 … return adjust_size_by_resizeability( m_xnew , x , typename is_resizeable<state_type>::type() ); in resize_m_xnew_impl()
873 … return adjust_size_by_resizeability( m_xerr , x , typename is_resizeable<state_type>::type() ); in resize_m_xerr_impl()
879 … return adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_m_dxdt_impl()
885 … return adjust_size_by_resizeability( m_dxdtnew , x , typename is_resizeable<deriv_type>::type() ); in resize_m_dxdt_new_impl()
891 … return adjust_size_by_resizeability( m_xnew , x , typename is_resizeable<state_type>::type() ); in resize_m_xnew_impl()
Drosenbrock4_dense_output.hpp184 … resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
185 … resized |= adjust_size_by_resizeability( m_x2 , x , typename is_resizeable<state_type>::type() ); in resize_impl()
Dadaptive_adams_bashforth_moulton.hpp209 … return adjust_size_by_resizeability( m_dxdt, x, typename is_resizeable<deriv_type>::type() ); in resize_dxdt_impl()
214 … return adjust_size_by_resizeability( m_xnew, x, typename is_resizeable<state_type>::type() ); in resize_xnew_impl()
219 … return adjust_size_by_resizeability( m_xerr, x, typename is_resizeable<state_type>::type() ); in resize_xerr_impl()
Dexplicit_generic_rk.hpp168 …resized |= adjust_size_by_resizeability( m_x_tmp , x , typename is_resizeable<state_type>::type() … in resize_impl()
171 …resized |= adjust_size_by_resizeability( m_F[i] , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
/third_party/boost/libs/numeric/odeint/test_external/eigen/
Dis_resizeable.cpp32 BOOST_AUTO_TEST_SUITE( is_resizeable )
37 BOOST_STATIC_ASSERT(( boost::numeric::odeint::is_resizeable< matrix_type >::value )); in BOOST_AUTO_TEST_CASE()
43 BOOST_STATIC_ASSERT(( boost::numeric::odeint::is_resizeable< array_type >::value )); in BOOST_AUTO_TEST_CASE()
/third_party/boost/boost/numeric/odeint/util/
Dis_resizeable.hpp46 struct is_resizeable : is_resizeable_sfinae< Container > {}; struct
54 struct is_resizeable< std::vector< V , A > > : boost::true_type {}; struct
65 …typedef typename boost::mpl::find_if< FusionSequence , is_resizeable< boost::mpl::_1 > >::type ite…
/third_party/boost/boost/numeric/odeint/external/mtl4/
Dimplicit_euler_mtl4.hpp138 …resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() ); in resize_impl()
139 … resized |= adjust_size_by_resizeability( m_x , x , typename is_resizeable<state_type>::type() ); in resize_impl()
140 …resized |= adjust_size_by_resizeability( m_identity , x , typename is_resizeable<matrix_type>::typ… in resize_impl()
141 …resized |= adjust_size_by_resizeability( m_jacobi , x , typename is_resizeable<matrix_type>::type(… in resize_impl()
Dmtl4_resize.hpp34 struct is_resizeable< mtl::dense_vector< Value , Parameters > > struct
41 struct is_resizeable< mtl::dense2D< Value , Parameters > > struct
48 struct is_resizeable< mtl::compressed2D< Value , Parameters > > struct
/third_party/boost/libs/numeric/odeint/test_external/mtl4/
Dmtl4_resize.cpp25 BOOST_CHECK( odeint::is_resizeable< mtl::dense_vector< double > >::value ); in BOOST_AUTO_TEST_CASE()
30 BOOST_CHECK( odeint::is_resizeable< mtl::dense2D< double > >::value ); in BOOST_AUTO_TEST_CASE()
35 BOOST_CHECK( odeint::is_resizeable< mtl::compressed2D< double > >::value ); in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/numeric/odeint/test_external/nt2/
Dis_resizeable.cpp31 BOOST_AUTO_TEST_CASE_TEMPLATE( is_resizeable, T, fp_types ) in BOOST_AUTO_TEST_CASE_TEMPLATE() argument
33 BOOST_STATIC_ASSERT(( boost::numeric::odeint::is_resizeable< nt2::table<T> >::value )); in BOOST_AUTO_TEST_CASE_TEMPLATE()
/third_party/boost/boost/numeric/odeint/external/mpi/
Dmpi_state.hpp59 struct is_resizeable< mpi_state< InnerState > > struct
60 : is_resizeable< InnerState > { };
/third_party/boost/boost/numeric/odeint/external/vexcl/
Dvexcl_resize.hpp39 struct is_resizeable< vex::vector< T > > : boost::true_type { }; struct
67 struct is_resizeable< vex::multivector< T , N > > : boost::true_type { }; struct
/third_party/boost/libs/numeric/odeint/examples/
Dmy_vector.cpp76 struct is_resizeable< my_vector<N> > struct
107 BOOST_STATIC_ASSERT( is_resizeable<state_type>::value == true ); in main()
/third_party/boost/boost/numeric/odeint/stepper/detail/
Dadaptive_adams_coefficients.hpp184 …resized |= adjust_size_by_resizeability( phi[0][i], x, typename is_resizeable<deriv_type>::type() … in resize_phi_impl()
185 …resized |= adjust_size_by_resizeability( phi[1][i], x, typename is_resizeable<deriv_type>::type() … in resize_phi_impl()
186 …resized |= adjust_size_by_resizeability( phi[2][i], x, typename is_resizeable<deriv_type>::type() … in resize_phi_impl()
/third_party/boost/libs/numeric/odeint/examples/2d_lattice/
Dvector_vector_resize.hpp23 struct is_resizeable< std::vector< std::vector< double > > > struct
68 typedef boost::true_type is_resizeable; typedef

123