boost.cxx 0.0.2 → 1.90.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -2
- package/boost/cast.hpp +20 -0
- package/boost/numeric/conversion/bounds.hpp +24 -0
- package/boost/numeric/conversion/cast.hpp +61 -0
- package/boost/numeric/conversion/conversion_traits.hpp +32 -0
- package/boost/numeric/conversion/converter.hpp +68 -0
- package/boost/numeric/conversion/converter_policies.hpp +194 -0
- package/boost/numeric/conversion/detail/bounds.hpp +58 -0
- package/boost/numeric/conversion/detail/conversion_traits.hpp +97 -0
- package/boost/numeric/conversion/detail/converter.hpp +593 -0
- package/boost/numeric/conversion/detail/int_float_mixture.hpp +72 -0
- package/boost/numeric/conversion/detail/is_subranged.hpp +234 -0
- package/boost/numeric/conversion/detail/meta.hpp +120 -0
- package/boost/numeric/conversion/detail/numeric_cast_traits.hpp +138 -0
- package/boost/numeric/conversion/detail/old_numeric_cast.hpp +308 -0
- package/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp +1741 -0
- package/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp +347 -0
- package/boost/numeric/conversion/detail/sign_mixture.hpp +72 -0
- package/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +69 -0
- package/boost/numeric/conversion/int_float_mixture.hpp +30 -0
- package/boost/numeric/conversion/int_float_mixture_enum.hpp +29 -0
- package/boost/numeric/conversion/is_subranged.hpp +27 -0
- package/boost/numeric/conversion/numeric_cast_traits.hpp +31 -0
- package/boost/numeric/conversion/sign_mixture.hpp +30 -0
- package/boost/numeric/conversion/sign_mixture_enum.hpp +29 -0
- package/boost/numeric/conversion/udt_builtin_mixture.hpp +28 -0
- package/boost/numeric/conversion/udt_builtin_mixture_enum.hpp +26 -0
- package/boost/numeric/interval/arith.hpp +305 -0
- package/boost/numeric/interval/arith2.hpp +304 -0
- package/boost/numeric/interval/arith3.hpp +69 -0
- package/boost/numeric/interval/checking.hpp +130 -0
- package/boost/numeric/interval/compare/certain.hpp +113 -0
- package/boost/numeric/interval/compare/explicit.hpp +248 -0
- package/boost/numeric/interval/compare/lexicographic.hpp +122 -0
- package/boost/numeric/interval/compare/possible.hpp +113 -0
- package/boost/numeric/interval/compare/set.hpp +101 -0
- package/boost/numeric/interval/compare/tribool.hpp +138 -0
- package/boost/numeric/interval/compare.hpp +19 -0
- package/boost/numeric/interval/constants.hpp +85 -0
- package/boost/numeric/interval/detail/alpha_rounding_control.hpp +113 -0
- package/boost/numeric/interval/detail/bcc_rounding_control.hpp +57 -0
- package/boost/numeric/interval/detail/bugs.hpp +48 -0
- package/boost/numeric/interval/detail/c99_rounding_control.hpp +50 -0
- package/boost/numeric/interval/detail/c99sub_rounding_control.hpp +43 -0
- package/boost/numeric/interval/detail/division.hpp +194 -0
- package/boost/numeric/interval/detail/ia64_rounding_control.hpp +83 -0
- package/boost/numeric/interval/detail/interval_prototype.hpp +41 -0
- package/boost/numeric/interval/detail/msvc_rounding_control.hpp +113 -0
- package/boost/numeric/interval/detail/ppc_rounding_control.hpp +99 -0
- package/boost/numeric/interval/detail/sparc_rounding_control.hpp +112 -0
- package/boost/numeric/interval/detail/test_input.hpp +76 -0
- package/boost/numeric/interval/detail/x86_rounding_control.hpp +108 -0
- package/boost/numeric/interval/detail/x86gcc_rounding_control.hpp +51 -0
- package/boost/numeric/interval/ext/integer.hpp +70 -0
- package/boost/numeric/interval/ext/x86_fast_rounding_control.hpp +70 -0
- package/boost/numeric/interval/hw_rounding.hpp +73 -0
- package/boost/numeric/interval/interval.hpp +450 -0
- package/boost/numeric/interval/io.hpp +41 -0
- package/boost/numeric/interval/limits.hpp +49 -0
- package/boost/numeric/interval/policies.hpp +75 -0
- package/boost/numeric/interval/rounded_arith.hpp +120 -0
- package/boost/numeric/interval/rounded_transc.hpp +140 -0
- package/boost/numeric/interval/rounding.hpp +101 -0
- package/boost/numeric/interval/transc.hpp +232 -0
- package/boost/numeric/interval/utility.hpp +335 -0
- package/boost/numeric/interval/utility_fwd.hpp +172 -0
- package/boost/numeric/interval.hpp +32 -0
- package/boost/numeric/odeint/algebra/algebra_dispatcher.hpp +86 -0
- package/boost/numeric/odeint/algebra/array_algebra.hpp +293 -0
- package/boost/numeric/odeint/algebra/default_operations.hpp +599 -0
- package/boost/numeric/odeint/algebra/detail/extract_value_type.hpp +51 -0
- package/boost/numeric/odeint/algebra/detail/for_each.hpp +165 -0
- package/boost/numeric/odeint/algebra/detail/macros.hpp +35 -0
- package/boost/numeric/odeint/algebra/detail/norm_inf.hpp +46 -0
- package/boost/numeric/odeint/algebra/fusion_algebra.hpp +216 -0
- package/boost/numeric/odeint/algebra/fusion_algebra_dispatcher.hpp +48 -0
- package/boost/numeric/odeint/algebra/multi_array_algebra.hpp +146 -0
- package/boost/numeric/odeint/algebra/norm_result_type.hpp +33 -0
- package/boost/numeric/odeint/algebra/operations_dispatcher.hpp +41 -0
- package/boost/numeric/odeint/algebra/range_algebra.hpp +142 -0
- package/boost/numeric/odeint/algebra/vector_space_algebra.hpp +175 -0
- package/boost/numeric/odeint/config.hpp +53 -0
- package/boost/numeric/odeint/external/blaze/blaze_algebra_dispatcher.hpp +55 -0
- package/boost/numeric/odeint/external/blaze/blaze_resize.hpp +64 -0
- package/boost/numeric/odeint/external/compute/compute.hpp +27 -0
- package/boost/numeric/odeint/external/compute/compute_algebra.hpp +65 -0
- package/boost/numeric/odeint/external/compute/compute_algebra_dispatcher.hpp +41 -0
- package/boost/numeric/odeint/external/compute/compute_operations.hpp +198 -0
- package/boost/numeric/odeint/external/compute/compute_operations_dispatcher.hpp +44 -0
- package/boost/numeric/odeint/external/compute/compute_resize.hpp +92 -0
- package/boost/numeric/odeint/external/eigen/eigen.hpp +27 -0
- package/boost/numeric/odeint/external/eigen/eigen_algebra.hpp +98 -0
- package/boost/numeric/odeint/external/eigen/eigen_algebra_dispatcher.hpp +49 -0
- package/boost/numeric/odeint/external/eigen/eigen_resize.hpp +103 -0
- package/boost/numeric/odeint/external/gsl/gsl_wrapper.hpp +228 -0
- package/boost/numeric/odeint/external/mkl/mkl_operations.hpp +181 -0
- package/boost/numeric/odeint/external/mpi/mpi.hpp +25 -0
- package/boost/numeric/odeint/external/mpi/mpi_nested_algebra.hpp +62 -0
- package/boost/numeric/odeint/external/mpi/mpi_state.hpp +113 -0
- package/boost/numeric/odeint/external/mpi/mpi_vector_state.hpp +95 -0
- package/boost/numeric/odeint/external/mtl4/implicit_euler_mtl4.hpp +161 -0
- package/boost/numeric/odeint/external/mtl4/mtl4.hpp +23 -0
- package/boost/numeric/odeint/external/mtl4/mtl4_algebra_dispatcher.hpp +99 -0
- package/boost/numeric/odeint/external/mtl4/mtl4_resize.hpp +134 -0
- package/boost/numeric/odeint/external/nt2/nt2_algebra_dispatcher.hpp +25 -0
- package/boost/numeric/odeint/external/nt2/nt2_copy.hpp +33 -0
- package/boost/numeric/odeint/external/nt2/nt2_norm_inf.hpp +31 -0
- package/boost/numeric/odeint/external/nt2/nt2_resize.hpp +54 -0
- package/boost/numeric/odeint/external/openmp/openmp.hpp +31 -0
- package/boost/numeric/odeint/external/openmp/openmp_nested_algebra.hpp +281 -0
- package/boost/numeric/odeint/external/openmp/openmp_range_algebra.hpp +276 -0
- package/boost/numeric/odeint/external/openmp/openmp_state.hpp +172 -0
- package/boost/numeric/odeint/external/thrust/thrust.hpp +27 -0
- package/boost/numeric/odeint/external/thrust/thrust_algebra.hpp +217 -0
- package/boost/numeric/odeint/external/thrust/thrust_algebra_dispatcher.hpp +118 -0
- package/boost/numeric/odeint/external/thrust/thrust_operations.hpp +233 -0
- package/boost/numeric/odeint/external/thrust/thrust_operations_dispatcher.hpp +118 -0
- package/boost/numeric/odeint/external/thrust/thrust_resize.hpp +197 -0
- package/boost/numeric/odeint/external/vexcl/vexcl.hpp +28 -0
- package/boost/numeric/odeint/external/vexcl/vexcl_abs.hpp +61 -0
- package/boost/numeric/odeint/external/vexcl/vexcl_algebra_dispatcher.hpp +51 -0
- package/boost/numeric/odeint/external/vexcl/vexcl_copy.hpp +55 -0
- package/boost/numeric/odeint/external/vexcl/vexcl_norm_inf.hpp +68 -0
- package/boost/numeric/odeint/external/vexcl/vexcl_resize.hpp +96 -0
- package/boost/numeric/odeint/external/vexcl/vexcl_same_instance.hpp +58 -0
- package/boost/numeric/odeint/external/viennacl/viennacl_operations.hpp +226 -0
- package/boost/numeric/odeint/external/viennacl/viennacl_resize.hpp +68 -0
- package/boost/numeric/odeint/integrate/check_adapter.hpp +222 -0
- package/boost/numeric/odeint/integrate/detail/functors.hpp +70 -0
- package/boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp +161 -0
- package/boost/numeric/odeint/integrate/detail/integrate_const.hpp +167 -0
- package/boost/numeric/odeint/integrate/detail/integrate_n_steps.hpp +161 -0
- package/boost/numeric/odeint/integrate/detail/integrate_times.hpp +179 -0
- package/boost/numeric/odeint/integrate/integrate.hpp +133 -0
- package/boost/numeric/odeint/integrate/integrate_adaptive.hpp +127 -0
- package/boost/numeric/odeint/integrate/integrate_const.hpp +195 -0
- package/boost/numeric/odeint/integrate/integrate_n_steps.hpp +178 -0
- package/boost/numeric/odeint/integrate/integrate_times.hpp +220 -0
- package/boost/numeric/odeint/integrate/max_step_checker.hpp +114 -0
- package/boost/numeric/odeint/integrate/null_observer.hpp +38 -0
- package/boost/numeric/odeint/integrate/observer_collection.hpp +55 -0
- package/boost/numeric/odeint/iterator/adaptive_iterator.hpp +183 -0
- package/boost/numeric/odeint/iterator/adaptive_time_iterator.hpp +175 -0
- package/boost/numeric/odeint/iterator/const_step_iterator.hpp +180 -0
- package/boost/numeric/odeint/iterator/const_step_time_iterator.hpp +173 -0
- package/boost/numeric/odeint/iterator/detail/ode_iterator_base.hpp +199 -0
- package/boost/numeric/odeint/iterator/impl/adaptive_iterator_impl.hpp +251 -0
- package/boost/numeric/odeint/iterator/impl/const_step_iterator_impl.hpp +228 -0
- package/boost/numeric/odeint/iterator/impl/n_step_iterator_impl.hpp +239 -0
- package/boost/numeric/odeint/iterator/impl/times_iterator_impl.hpp +369 -0
- package/boost/numeric/odeint/iterator/integrate/detail/functors.hpp +70 -0
- package/boost/numeric/odeint/iterator/integrate/detail/integrate_adaptive.hpp +121 -0
- package/boost/numeric/odeint/iterator/integrate/detail/integrate_const.hpp +111 -0
- package/boost/numeric/odeint/iterator/integrate/detail/integrate_n_steps.hpp +107 -0
- package/boost/numeric/odeint/iterator/integrate/detail/integrate_times.hpp +67 -0
- package/boost/numeric/odeint/iterator/integrate/integrate.hpp +111 -0
- package/boost/numeric/odeint/iterator/integrate/integrate_adaptive.hpp +127 -0
- package/boost/numeric/odeint/iterator/integrate/integrate_const.hpp +158 -0
- package/boost/numeric/odeint/iterator/integrate/integrate_n_steps.hpp +123 -0
- package/boost/numeric/odeint/iterator/integrate/integrate_times.hpp +131 -0
- package/boost/numeric/odeint/iterator/integrate/null_observer.hpp +38 -0
- package/boost/numeric/odeint/iterator/integrate/observer_collection.hpp +55 -0
- package/boost/numeric/odeint/iterator/n_step_iterator.hpp +168 -0
- package/boost/numeric/odeint/iterator/n_step_time_iterator.hpp +169 -0
- package/boost/numeric/odeint/iterator/times_iterator.hpp +189 -0
- package/boost/numeric/odeint/iterator/times_time_iterator.hpp +193 -0
- package/boost/numeric/odeint/stepper/adams_bashforth.hpp +418 -0
- package/boost/numeric/odeint/stepper/adams_bashforth_moulton.hpp +313 -0
- package/boost/numeric/odeint/stepper/adams_moulton.hpp +201 -0
- package/boost/numeric/odeint/stepper/adaptive_adams_bashforth_moulton.hpp +237 -0
- package/boost/numeric/odeint/stepper/base/algebra_stepper_base.hpp +91 -0
- package/boost/numeric/odeint/stepper/base/explicit_error_stepper_base.hpp +588 -0
- package/boost/numeric/odeint/stepper/base/explicit_error_stepper_fsal_base.hpp +677 -0
- package/boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp +415 -0
- package/boost/numeric/odeint/stepper/base/symplectic_rkn_stepper_base.hpp +431 -0
- package/boost/numeric/odeint/stepper/bulirsch_stoer.hpp +642 -0
- package/boost/numeric/odeint/stepper/bulirsch_stoer_dense_out.hpp +838 -0
- package/boost/numeric/odeint/stepper/controlled_adams_bashforth_moulton.hpp +322 -0
- package/boost/numeric/odeint/stepper/controlled_runge_kutta.hpp +1018 -0
- package/boost/numeric/odeint/stepper/controlled_step_result.hpp +42 -0
- package/boost/numeric/odeint/stepper/dense_output_runge_kutta.hpp +476 -0
- package/boost/numeric/odeint/stepper/detail/adams_bashforth_call_algebra.hpp +148 -0
- package/boost/numeric/odeint/stepper/detail/adams_bashforth_coefficients.hpp +168 -0
- package/boost/numeric/odeint/stepper/detail/adams_moulton_call_algebra.hpp +148 -0
- package/boost/numeric/odeint/stepper/detail/adams_moulton_coefficients.hpp +168 -0
- package/boost/numeric/odeint/stepper/detail/adaptive_adams_coefficients.hpp +207 -0
- package/boost/numeric/odeint/stepper/detail/generic_rk_algorithm.hpp +247 -0
- package/boost/numeric/odeint/stepper/detail/generic_rk_call_algebra.hpp +263 -0
- package/boost/numeric/odeint/stepper/detail/generic_rk_operations.hpp +252 -0
- package/boost/numeric/odeint/stepper/detail/pid_step_adjuster.hpp +199 -0
- package/boost/numeric/odeint/stepper/detail/pid_step_adjuster_coefficients.hpp +180 -0
- package/boost/numeric/odeint/stepper/detail/rotating_buffer.hpp +84 -0
- package/boost/numeric/odeint/stepper/euler.hpp +166 -0
- package/boost/numeric/odeint/stepper/explicit_error_generic_rk.hpp +255 -0
- package/boost/numeric/odeint/stepper/explicit_generic_rk.hpp +246 -0
- package/boost/numeric/odeint/stepper/extrapolation_stepper.hpp +288 -0
- package/boost/numeric/odeint/stepper/generation/generation_controlled_adams_bashforth_moulton.hpp +59 -0
- package/boost/numeric/odeint/stepper/generation/generation_controlled_runge_kutta.hpp +61 -0
- package/boost/numeric/odeint/stepper/generation/generation_dense_output_runge_kutta.hpp +65 -0
- package/boost/numeric/odeint/stepper/generation/generation_rosenbrock4.hpp +79 -0
- package/boost/numeric/odeint/stepper/generation/generation_runge_kutta_cash_karp54.hpp +47 -0
- package/boost/numeric/odeint/stepper/generation/generation_runge_kutta_cash_karp54_classic.hpp +48 -0
- package/boost/numeric/odeint/stepper/generation/generation_runge_kutta_dopri5.hpp +56 -0
- package/boost/numeric/odeint/stepper/generation/generation_runge_kutta_fehlberg78.hpp +46 -0
- package/boost/numeric/odeint/stepper/generation/make_controlled.hpp +103 -0
- package/boost/numeric/odeint/stepper/generation/make_dense_output.hpp +100 -0
- package/boost/numeric/odeint/stepper/generation.hpp +37 -0
- package/boost/numeric/odeint/stepper/implicit_euler.hpp +170 -0
- package/boost/numeric/odeint/stepper/modified_midpoint.hpp +315 -0
- package/boost/numeric/odeint/stepper/rosenbrock4.hpp +346 -0
- package/boost/numeric/odeint/stepper/rosenbrock4_controller.hpp +240 -0
- package/boost/numeric/odeint/stepper/rosenbrock4_dense_output.hpp +204 -0
- package/boost/numeric/odeint/stepper/runge_kutta4.hpp +181 -0
- package/boost/numeric/odeint/stepper/runge_kutta4_classic.hpp +232 -0
- package/boost/numeric/odeint/stepper/runge_kutta_cash_karp54.hpp +231 -0
- package/boost/numeric/odeint/stepper/runge_kutta_cash_karp54_classic.hpp +289 -0
- package/boost/numeric/odeint/stepper/runge_kutta_dopri5.hpp +403 -0
- package/boost/numeric/odeint/stepper/runge_kutta_fehlberg78.hpp +374 -0
- package/boost/numeric/odeint/stepper/stepper_categories.hpp +66 -0
- package/boost/numeric/odeint/stepper/symplectic_euler.hpp +136 -0
- package/boost/numeric/odeint/stepper/symplectic_rkn_sb3a_m4_mclachlan.hpp +160 -0
- package/boost/numeric/odeint/stepper/symplectic_rkn_sb3a_mclachlan.hpp +162 -0
- package/boost/numeric/odeint/stepper/velocity_verlet.hpp +375 -0
- package/boost/numeric/odeint/tools/assert.hpp +30 -0
- package/boost/numeric/odeint/tools/is_standalone.hpp +21 -0
- package/boost/numeric/odeint/tools/traits.hpp +39 -0
- package/boost/numeric/odeint/util/bind.hpp +35 -0
- package/boost/numeric/odeint/util/copy.hpp +88 -0
- package/boost/numeric/odeint/util/detail/is_range.hpp +127 -0
- package/boost/numeric/odeint/util/detail/less_with_sign.hpp +78 -0
- package/boost/numeric/odeint/util/is_pair.hpp +42 -0
- package/boost/numeric/odeint/util/is_resizeable.hpp +84 -0
- package/boost/numeric/odeint/util/multi_array_adaption.hpp +131 -0
- package/boost/numeric/odeint/util/n_ary_helper.hpp +96 -0
- package/boost/numeric/odeint/util/odeint_error.hpp +77 -0
- package/boost/numeric/odeint/util/resize.hpp +120 -0
- package/boost/numeric/odeint/util/resizer.hpp +94 -0
- package/boost/numeric/odeint/util/same_instance.hpp +56 -0
- package/boost/numeric/odeint/util/same_size.hpp +117 -0
- package/boost/numeric/odeint/util/split.hpp +64 -0
- package/boost/numeric/odeint/util/split_adaptor.hpp +103 -0
- package/boost/numeric/odeint/util/state_wrapper.hpp +50 -0
- package/boost/numeric/odeint/util/stepper_traits.hpp +63 -0
- package/boost/numeric/odeint/util/ublas_matrix_expression.patch +6 -0
- package/boost/numeric/odeint/util/ublas_wrapper.hpp +297 -0
- package/boost/numeric/odeint/util/unit_helper.hpp +151 -0
- package/boost/numeric/odeint/util/unwrap_reference.hpp +141 -0
- package/boost/numeric/odeint/version.hpp +55 -0
- package/boost/numeric/odeint.hpp +87 -0
- package/boost/numeric/ublas/assignment.hpp +1288 -0
- package/boost/numeric/ublas/banded.hpp +2372 -0
- package/boost/numeric/ublas/blas.hpp +499 -0
- package/boost/numeric/ublas/detail/concepts.hpp +1465 -0
- package/boost/numeric/ublas/detail/config.hpp +304 -0
- package/boost/numeric/ublas/detail/definitions.hpp +212 -0
- package/boost/numeric/ublas/detail/documentation.hpp +33 -0
- package/boost/numeric/ublas/detail/duff.hpp +56 -0
- package/boost/numeric/ublas/detail/iterator.hpp +1448 -0
- package/boost/numeric/ublas/detail/matrix_assign.hpp +1785 -0
- package/boost/numeric/ublas/detail/raw.hpp +878 -0
- package/boost/numeric/ublas/detail/returntype_deduction.hpp +174 -0
- package/boost/numeric/ublas/detail/temporary.hpp +33 -0
- package/boost/numeric/ublas/detail/vector_assign.hpp +609 -0
- package/boost/numeric/ublas/doxydoc.hpp +58 -0
- package/boost/numeric/ublas/exception.hpp +297 -0
- package/boost/numeric/ublas/experimental/sparse_view.hpp +317 -0
- package/boost/numeric/ublas/expression_types.hpp +506 -0
- package/boost/numeric/ublas/functional.hpp +2112 -0
- package/boost/numeric/ublas/fwd.hpp +229 -0
- package/boost/numeric/ublas/hermitian.hpp +2633 -0
- package/boost/numeric/ublas/io.hpp +355 -0
- package/boost/numeric/ublas/lu.hpp +350 -0
- package/boost/numeric/ublas/matrix.hpp +6013 -0
- package/boost/numeric/ublas/matrix_expression.hpp +5693 -0
- package/boost/numeric/ublas/matrix_proxy.hpp +5457 -0
- package/boost/numeric/ublas/matrix_sparse.hpp +5773 -0
- package/boost/numeric/ublas/matrix_vector.hpp +406 -0
- package/boost/numeric/ublas/opencl/elementwise.hpp +508 -0
- package/boost/numeric/ublas/opencl/library.hpp +38 -0
- package/boost/numeric/ublas/opencl/matrix.hpp +123 -0
- package/boost/numeric/ublas/opencl/misc.hpp +182 -0
- package/boost/numeric/ublas/opencl/operations.hpp +18 -0
- package/boost/numeric/ublas/opencl/prod.hpp +364 -0
- package/boost/numeric/ublas/opencl/transpose.hpp +142 -0
- package/boost/numeric/ublas/opencl/vector.hpp +90 -0
- package/boost/numeric/ublas/opencl.hpp +16 -0
- package/boost/numeric/ublas/operation/begin.hpp +318 -0
- package/boost/numeric/ublas/operation/c_array.hpp +41 -0
- package/boost/numeric/ublas/operation/end.hpp +318 -0
- package/boost/numeric/ublas/operation/num_columns.hpp +45 -0
- package/boost/numeric/ublas/operation/num_rows.hpp +44 -0
- package/boost/numeric/ublas/operation/size.hpp +350 -0
- package/boost/numeric/ublas/operation.hpp +830 -0
- package/boost/numeric/ublas/operation_blocked.hpp +266 -0
- package/boost/numeric/ublas/operation_sparse.hpp +198 -0
- package/boost/numeric/ublas/operations.hpp +26 -0
- package/boost/numeric/ublas/storage.hpp +2131 -0
- package/boost/numeric/ublas/storage_sparse.hpp +578 -0
- package/boost/numeric/ublas/symmetric.hpp +2309 -0
- package/boost/numeric/ublas/tags.hpp +37 -0
- package/boost/numeric/ublas/tensor/algorithms.hpp +345 -0
- package/boost/numeric/ublas/tensor/expression.hpp +181 -0
- package/boost/numeric/ublas/tensor/expression_evaluation.hpp +288 -0
- package/boost/numeric/ublas/tensor/extents.hpp +335 -0
- package/boost/numeric/ublas/tensor/functions.hpp +558 -0
- package/boost/numeric/ublas/tensor/index.hpp +89 -0
- package/boost/numeric/ublas/tensor/multi_index.hpp +110 -0
- package/boost/numeric/ublas/tensor/multi_index_utility.hpp +364 -0
- package/boost/numeric/ublas/tensor/multiplication.hpp +945 -0
- package/boost/numeric/ublas/tensor/operators_arithmetic.hpp +244 -0
- package/boost/numeric/ublas/tensor/operators_comparison.hpp +175 -0
- package/boost/numeric/ublas/tensor/ostream.hpp +122 -0
- package/boost/numeric/ublas/tensor/storage_traits.hpp +84 -0
- package/boost/numeric/ublas/tensor/strides.hpp +251 -0
- package/boost/numeric/ublas/tensor/tensor.hpp +734 -0
- package/boost/numeric/ublas/tensor.hpp +26 -0
- package/boost/numeric/ublas/traits/c_array.hpp +110 -0
- package/boost/numeric/ublas/traits/const_iterator_type.hpp +127 -0
- package/boost/numeric/ublas/traits/iterator_type.hpp +126 -0
- package/boost/numeric/ublas/traits.hpp +753 -0
- package/boost/numeric/ublas/triangular.hpp +2775 -0
- package/boost/numeric/ublas/vector.hpp +2947 -0
- package/boost/numeric/ublas/vector_expression.hpp +1762 -0
- package/boost/numeric/ublas/vector_of_vector.hpp +1347 -0
- package/boost/numeric/ublas/vector_proxy.hpp +1697 -0
- package/boost/numeric/ublas/vector_sparse.hpp +2246 -0
- package/package.json +3 -7
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
/*
|
|
2
|
+
[auto_generated]
|
|
3
|
+
boost/numeric/odeint/stepper/modified_midpoint.hpp
|
|
4
|
+
|
|
5
|
+
[begin_description]
|
|
6
|
+
Modified midpoint method for the use in Burlish-Stoer stepper.
|
|
7
|
+
[end_description]
|
|
8
|
+
|
|
9
|
+
Copyright 2011-2013 Mario Mulansky
|
|
10
|
+
Copyright 2011-2013 Karsten Ahnert
|
|
11
|
+
Copyright 2012 Christoph Koke
|
|
12
|
+
|
|
13
|
+
Distributed under the Boost Software License, Version 1.0.
|
|
14
|
+
(See accompanying file LICENSE_1_0.txt or
|
|
15
|
+
copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
#ifndef BOOST_NUMERIC_ODEINT_STEPPER_MODIFIED_MIDPOINT_HPP_INCLUDED
|
|
20
|
+
#define BOOST_NUMERIC_ODEINT_STEPPER_MODIFIED_MIDPOINT_HPP_INCLUDED
|
|
21
|
+
|
|
22
|
+
#include <vector>
|
|
23
|
+
|
|
24
|
+
#include <boost/numeric/odeint/stepper/base/explicit_stepper_base.hpp>
|
|
25
|
+
#include <boost/numeric/odeint/util/resizer.hpp>
|
|
26
|
+
#include <boost/numeric/odeint/util/is_resizeable.hpp>
|
|
27
|
+
#include <boost/numeric/odeint/algebra/range_algebra.hpp>
|
|
28
|
+
#include <boost/numeric/odeint/algebra/default_operations.hpp>
|
|
29
|
+
#include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp>
|
|
30
|
+
#include <boost/numeric/odeint/algebra/operations_dispatcher.hpp>
|
|
31
|
+
#include <boost/numeric/odeint/util/copy.hpp>
|
|
32
|
+
|
|
33
|
+
namespace boost {
|
|
34
|
+
namespace numeric {
|
|
35
|
+
namespace odeint {
|
|
36
|
+
|
|
37
|
+
template<
|
|
38
|
+
class State ,
|
|
39
|
+
class Value = double ,
|
|
40
|
+
class Deriv = State ,
|
|
41
|
+
class Time = Value ,
|
|
42
|
+
class Algebra = typename algebra_dispatcher< State >::algebra_type ,
|
|
43
|
+
class Operations = typename operations_dispatcher< State >::operations_type ,
|
|
44
|
+
class Resizer = initially_resizer
|
|
45
|
+
>
|
|
46
|
+
#ifndef DOXYGEN_SKIP
|
|
47
|
+
class modified_midpoint
|
|
48
|
+
: public explicit_stepper_base<
|
|
49
|
+
modified_midpoint< State , Value , Deriv , Time , Algebra , Operations , Resizer > ,
|
|
50
|
+
2 , State , Value , Deriv , Time , Algebra , Operations , Resizer >
|
|
51
|
+
#else
|
|
52
|
+
class modified_midpoint : public explicit_stepper_base
|
|
53
|
+
#endif
|
|
54
|
+
{
|
|
55
|
+
|
|
56
|
+
public :
|
|
57
|
+
|
|
58
|
+
typedef explicit_stepper_base<
|
|
59
|
+
modified_midpoint< State , Value , Deriv , Time , Algebra , Operations , Resizer > ,
|
|
60
|
+
2 , State , Value , Deriv , Time , Algebra , Operations , Resizer > stepper_base_type;
|
|
61
|
+
|
|
62
|
+
typedef typename stepper_base_type::state_type state_type;
|
|
63
|
+
typedef typename stepper_base_type::wrapped_state_type wrapped_state_type;
|
|
64
|
+
typedef typename stepper_base_type::value_type value_type;
|
|
65
|
+
typedef typename stepper_base_type::deriv_type deriv_type;
|
|
66
|
+
typedef typename stepper_base_type::wrapped_deriv_type wrapped_deriv_type;
|
|
67
|
+
typedef typename stepper_base_type::time_type time_type;
|
|
68
|
+
typedef typename stepper_base_type::algebra_type algebra_type;
|
|
69
|
+
typedef typename stepper_base_type::operations_type operations_type;
|
|
70
|
+
typedef typename stepper_base_type::resizer_type resizer_type;
|
|
71
|
+
typedef typename stepper_base_type::stepper_type stepper_type;
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
modified_midpoint( unsigned short steps = 2 , const algebra_type &algebra = algebra_type() )
|
|
75
|
+
: stepper_base_type( algebra ) , m_steps( steps )
|
|
76
|
+
{ }
|
|
77
|
+
|
|
78
|
+
template< class System , class StateIn , class DerivIn , class StateOut >
|
|
79
|
+
void do_step_impl( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &out , time_type dt )
|
|
80
|
+
{
|
|
81
|
+
static const value_type val1 = static_cast< value_type >( 1 );
|
|
82
|
+
static const value_type val05 = static_cast< value_type >( 1 ) / static_cast< value_type >( 2 );
|
|
83
|
+
|
|
84
|
+
m_resizer.adjust_size(in, [this](auto&& arg) { return this->resize_impl<StateIn>(std::forward<decltype(arg)>(arg)); });
|
|
85
|
+
|
|
86
|
+
const time_type h = dt / static_cast<value_type>( m_steps );
|
|
87
|
+
const time_type h2 = static_cast<value_type>(2) * h;
|
|
88
|
+
|
|
89
|
+
typename odeint::unwrap_reference< System >::type &sys = system;
|
|
90
|
+
|
|
91
|
+
time_type th = t + h;
|
|
92
|
+
|
|
93
|
+
// m_x1 = x + h*dxdt
|
|
94
|
+
stepper_base_type::m_algebra.for_each3( m_x1.m_v , in , dxdt ,
|
|
95
|
+
typename operations_type::template scale_sum2< value_type , time_type >( val1 , h ) );
|
|
96
|
+
|
|
97
|
+
sys( m_x1.m_v , m_dxdt.m_v , th );
|
|
98
|
+
|
|
99
|
+
boost::numeric::odeint::copy( in , m_x0.m_v );
|
|
100
|
+
|
|
101
|
+
unsigned short i = 1;
|
|
102
|
+
while( i != m_steps )
|
|
103
|
+
{
|
|
104
|
+
// general step
|
|
105
|
+
//tmp = m_x1; m_x1 = m_x0 + h2*m_dxdt; m_x0 = tmp
|
|
106
|
+
stepper_base_type::m_algebra.for_each3( m_x1.m_v , m_x0.m_v , m_dxdt.m_v ,
|
|
107
|
+
typename operations_type::template scale_sum_swap2< value_type , time_type >( val1 , h2 ) );
|
|
108
|
+
th += h;
|
|
109
|
+
sys( m_x1.m_v , m_dxdt.m_v , th);
|
|
110
|
+
i++;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// last step
|
|
114
|
+
// x = 0.5*( m_x0 + m_x1 + h*m_dxdt )
|
|
115
|
+
stepper_base_type::m_algebra.for_each4( out , m_x0.m_v , m_x1.m_v , m_dxdt.m_v ,
|
|
116
|
+
typename operations_type::template scale_sum3< value_type , value_type , time_type >( val05 , val05 , val05*h ) );
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
void set_steps( unsigned short steps )
|
|
121
|
+
{ m_steps = steps; }
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
unsigned short steps( void ) const
|
|
125
|
+
{ return m_steps; }
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
template< class StateIn >
|
|
129
|
+
void adjust_size( const StateIn &x )
|
|
130
|
+
{
|
|
131
|
+
resize_impl( x );
|
|
132
|
+
stepper_base_type::adjust_size( x );
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
private:
|
|
136
|
+
|
|
137
|
+
template< class StateIn >
|
|
138
|
+
bool resize_impl( const StateIn &x )
|
|
139
|
+
{
|
|
140
|
+
bool resized( false );
|
|
141
|
+
resized |= adjust_size_by_resizeability( m_x0 , x , typename is_resizeable<state_type>::type() );
|
|
142
|
+
resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() );
|
|
143
|
+
resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() );
|
|
144
|
+
return resized;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
unsigned short m_steps;
|
|
149
|
+
|
|
150
|
+
resizer_type m_resizer;
|
|
151
|
+
|
|
152
|
+
wrapped_state_type m_x0;
|
|
153
|
+
wrapped_state_type m_x1;
|
|
154
|
+
wrapped_deriv_type m_dxdt;
|
|
155
|
+
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
/* Modified midpoint which stores derivatives and state at dt/2 in some external storage for later usage in dense output calculation
|
|
160
|
+
* This Stepper is for use in Bulirsch Stoer only. It DOES NOT meet any stepper concept.
|
|
161
|
+
*/
|
|
162
|
+
template<
|
|
163
|
+
class State ,
|
|
164
|
+
class Value = double ,
|
|
165
|
+
class Deriv = State ,
|
|
166
|
+
class Time = Value ,
|
|
167
|
+
class Algebra = typename algebra_dispatcher< State >::algebra_type ,
|
|
168
|
+
class Operations = typename operations_dispatcher< State >::operations_type ,
|
|
169
|
+
class Resizer = initially_resizer
|
|
170
|
+
>
|
|
171
|
+
class modified_midpoint_dense_out
|
|
172
|
+
{
|
|
173
|
+
|
|
174
|
+
public :
|
|
175
|
+
|
|
176
|
+
typedef State state_type;
|
|
177
|
+
typedef Value value_type;
|
|
178
|
+
typedef Deriv deriv_type;
|
|
179
|
+
typedef Time time_type;
|
|
180
|
+
typedef Algebra algebra_type;
|
|
181
|
+
typedef Operations operations_type;
|
|
182
|
+
typedef Resizer resizer_type;
|
|
183
|
+
typedef state_wrapper< state_type > wrapped_state_type;
|
|
184
|
+
typedef state_wrapper< deriv_type > wrapped_deriv_type;
|
|
185
|
+
|
|
186
|
+
typedef modified_midpoint_dense_out< State , Value , Deriv , Time , Algebra , Operations , Resizer > stepper_type;
|
|
187
|
+
typedef std::vector< wrapped_deriv_type > deriv_table_type;
|
|
188
|
+
|
|
189
|
+
modified_midpoint_dense_out( unsigned short steps = 2 , const algebra_type &algebra = algebra_type() )
|
|
190
|
+
: m_algebra( algebra ) , m_steps( steps )
|
|
191
|
+
{ }
|
|
192
|
+
|
|
193
|
+
/*
|
|
194
|
+
* performs a modified midpoint step with m_steps intermediate points
|
|
195
|
+
* stores approximation for x(t+dt/2) in x_mp and all evaluated function results in derivs
|
|
196
|
+
*
|
|
197
|
+
*/
|
|
198
|
+
|
|
199
|
+
template< class System , class StateIn , class DerivIn , class StateOut >
|
|
200
|
+
void do_step( System system , const StateIn &in , const DerivIn &dxdt , time_type t , StateOut &out , time_type dt ,
|
|
201
|
+
state_type &x_mp , deriv_table_type &derivs )
|
|
202
|
+
{
|
|
203
|
+
|
|
204
|
+
static const value_type val1 = static_cast< value_type >( 1 );
|
|
205
|
+
static const value_type val05 = static_cast< value_type >( 1 ) / static_cast< value_type >( 2 );
|
|
206
|
+
|
|
207
|
+
m_resizer.adjust_size(in, [this](auto&& arg) { return this->resize<StateIn>(std::forward<decltype(arg)>(arg)); });
|
|
208
|
+
|
|
209
|
+
const time_type h = dt / static_cast<value_type>( m_steps );
|
|
210
|
+
const time_type h2 = static_cast<value_type>( 2 ) * h;
|
|
211
|
+
|
|
212
|
+
typename odeint::unwrap_reference< System >::type &sys = system;
|
|
213
|
+
|
|
214
|
+
time_type th = t + h;
|
|
215
|
+
|
|
216
|
+
// m_x1 = x + h*dxdt
|
|
217
|
+
m_algebra.for_each3( m_x1.m_v , in , dxdt ,
|
|
218
|
+
typename operations_type::template scale_sum2< value_type , time_type >( val1 , h ) );
|
|
219
|
+
|
|
220
|
+
if( m_steps == 2 )
|
|
221
|
+
// result of first step already gives approximation at the center of the interval
|
|
222
|
+
boost::numeric::odeint::copy( m_x1.m_v , x_mp );
|
|
223
|
+
|
|
224
|
+
sys( m_x1.m_v , derivs[0].m_v , th );
|
|
225
|
+
|
|
226
|
+
boost::numeric::odeint::copy( in , m_x0.m_v );
|
|
227
|
+
|
|
228
|
+
unsigned short i = 1;
|
|
229
|
+
while( i != m_steps )
|
|
230
|
+
{
|
|
231
|
+
// general step
|
|
232
|
+
//tmp = m_x1; m_x1 = m_x0 + h2*m_dxdt; m_x0 = tmp
|
|
233
|
+
m_algebra.for_each3( m_x1.m_v , m_x0.m_v , derivs[i-1].m_v ,
|
|
234
|
+
typename operations_type::template scale_sum_swap2< value_type , time_type >( val1 , h2 ) );
|
|
235
|
+
if( i == m_steps/2-1 )
|
|
236
|
+
// save approximation at the center of the interval
|
|
237
|
+
boost::numeric::odeint::copy( m_x1.m_v , x_mp );
|
|
238
|
+
|
|
239
|
+
th += h;
|
|
240
|
+
sys( m_x1.m_v , derivs[i].m_v , th);
|
|
241
|
+
i++;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// last step
|
|
245
|
+
// x = 0.5*( m_x0 + m_x1 + h*m_dxdt )
|
|
246
|
+
m_algebra.for_each4( out , m_x0.m_v , m_x1.m_v , derivs[m_steps-1].m_v ,
|
|
247
|
+
typename operations_type::template scale_sum3< value_type , value_type , time_type >( val05 , val05 , val05*h ) );
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
void set_steps( unsigned short steps )
|
|
252
|
+
{ m_steps = steps; }
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
unsigned short steps( void ) const
|
|
256
|
+
{ return m_steps; }
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
template< class StateIn >
|
|
260
|
+
bool resize( const StateIn &x )
|
|
261
|
+
{
|
|
262
|
+
bool resized( false );
|
|
263
|
+
resized |= adjust_size_by_resizeability( m_x0 , x , typename is_resizeable<state_type>::type() );
|
|
264
|
+
resized |= adjust_size_by_resizeability( m_x1 , x , typename is_resizeable<state_type>::type() );
|
|
265
|
+
return resized;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
template< class StateIn >
|
|
269
|
+
void adjust_size( const StateIn &x )
|
|
270
|
+
{
|
|
271
|
+
resize( x );
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
private:
|
|
275
|
+
|
|
276
|
+
algebra_type m_algebra;
|
|
277
|
+
|
|
278
|
+
unsigned short m_steps;
|
|
279
|
+
|
|
280
|
+
resizer_type m_resizer;
|
|
281
|
+
|
|
282
|
+
wrapped_state_type m_x0;
|
|
283
|
+
wrapped_state_type m_x1;
|
|
284
|
+
|
|
285
|
+
};
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
/********** DOXYGEN ***********/
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* \class modified_midpoint
|
|
293
|
+
*
|
|
294
|
+
* Implementation of the modified midpoint method with a configurable
|
|
295
|
+
* number of intermediate steps. This class is used by the Bulirsch-Stoer
|
|
296
|
+
* algorithm and is not meant for direct usage.
|
|
297
|
+
*/
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* \class modified_midpoint_dense_out
|
|
302
|
+
*
|
|
303
|
+
* Implementation of the modified midpoint method with a configurable
|
|
304
|
+
* number of intermediate steps. This class is used by the dense output
|
|
305
|
+
* Bulirsch-Stoer algorithm and is not meant for direct usage.
|
|
306
|
+
* \note This stepper is for internal use only and does not meet
|
|
307
|
+
* any stepper concept.
|
|
308
|
+
*/
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
#endif // BOOST_NUMERIC_ODEINT_STEPPER_MODIFIED_MIDPOINT_HPP_INCLUDED
|
|
@@ -0,0 +1,346 @@
|
|
|
1
|
+
/*
|
|
2
|
+
[auto_generated]
|
|
3
|
+
boost/numeric/odeint/stepper/rosenbrock4.hpp
|
|
4
|
+
|
|
5
|
+
[begin_description]
|
|
6
|
+
Implementation of the Rosenbrock 4 method for solving stiff ODEs. Note, that a
|
|
7
|
+
controller and a dense-output stepper exist for this method,
|
|
8
|
+
[end_description]
|
|
9
|
+
|
|
10
|
+
Copyright 2011-2013 Karsten Ahnert
|
|
11
|
+
Copyright 2011-2012 Mario Mulansky
|
|
12
|
+
Copyright 2012 Christoph Koke
|
|
13
|
+
|
|
14
|
+
Distributed under the Boost Software License, Version 1.0.
|
|
15
|
+
(See accompanying file LICENSE_1_0.txt or
|
|
16
|
+
copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
#ifndef BOOST_NUMERIC_ODEINT_STEPPER_ROSENBROCK4_HPP_INCLUDED
|
|
21
|
+
#define BOOST_NUMERIC_ODEINT_STEPPER_ROSENBROCK4_HPP_INCLUDED
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
#include <boost/numeric/odeint/util/bind.hpp>
|
|
25
|
+
#include <boost/numeric/odeint/util/unwrap_reference.hpp>
|
|
26
|
+
#include <boost/numeric/ublas/vector.hpp>
|
|
27
|
+
#include <boost/numeric/ublas/matrix.hpp>
|
|
28
|
+
#include <boost/numeric/ublas/lu.hpp>
|
|
29
|
+
|
|
30
|
+
#include <boost/numeric/odeint/stepper/stepper_categories.hpp>
|
|
31
|
+
|
|
32
|
+
#include <boost/numeric/odeint/util/ublas_wrapper.hpp>
|
|
33
|
+
#include <boost/numeric/odeint/util/is_resizeable.hpp>
|
|
34
|
+
#include <boost/numeric/odeint/util/resizer.hpp>
|
|
35
|
+
|
|
36
|
+
#include <boost/numeric/ublas/vector.hpp>
|
|
37
|
+
#include <boost/numeric/ublas/matrix.hpp>
|
|
38
|
+
#include <boost/numeric/ublas/lu.hpp>
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
namespace boost {
|
|
42
|
+
namespace numeric {
|
|
43
|
+
namespace odeint {
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
/*
|
|
47
|
+
* ToDo:
|
|
48
|
+
*
|
|
49
|
+
* 2. Interfacing for odeint, check if controlled_error_stepper can be used
|
|
50
|
+
* 3. dense output
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
template< class Value >
|
|
56
|
+
struct default_rosenbrock_coefficients
|
|
57
|
+
{
|
|
58
|
+
typedef Value value_type;
|
|
59
|
+
typedef unsigned short order_type;
|
|
60
|
+
|
|
61
|
+
default_rosenbrock_coefficients( void )
|
|
62
|
+
: gamma ( static_cast< value_type >( 0.25 ) ) ,
|
|
63
|
+
d1 ( static_cast< value_type >( 0.25 ) ) ,
|
|
64
|
+
d2 ( static_cast< value_type >( -0.1043 ) ) ,
|
|
65
|
+
d3 ( static_cast< value_type >( 0.1035 ) ) ,
|
|
66
|
+
d4 ( static_cast< value_type >( 0.3620000000000023e-01 ) ) ,
|
|
67
|
+
c2 ( static_cast< value_type >( 0.386 ) ) ,
|
|
68
|
+
c3 ( static_cast< value_type >( 0.21 ) ) ,
|
|
69
|
+
c4 ( static_cast< value_type >( 0.63 ) ) ,
|
|
70
|
+
c21 ( static_cast< value_type >( -0.5668800000000000e+01 ) ) ,
|
|
71
|
+
a21 ( static_cast< value_type >( 0.1544000000000000e+01 ) ) ,
|
|
72
|
+
c31 ( static_cast< value_type >( -0.2430093356833875e+01 ) ) ,
|
|
73
|
+
c32 ( static_cast< value_type >( -0.2063599157091915e+00 ) ) ,
|
|
74
|
+
a31 ( static_cast< value_type >( 0.9466785280815826e+00 ) ) ,
|
|
75
|
+
a32 ( static_cast< value_type >( 0.2557011698983284e+00 ) ) ,
|
|
76
|
+
c41 ( static_cast< value_type >( -0.1073529058151375e+00 ) ) ,
|
|
77
|
+
c42 ( static_cast< value_type >( -0.9594562251023355e+01 ) ) ,
|
|
78
|
+
c43 ( static_cast< value_type >( -0.2047028614809616e+02 ) ) ,
|
|
79
|
+
a41 ( static_cast< value_type >( 0.3314825187068521e+01 ) ) ,
|
|
80
|
+
a42 ( static_cast< value_type >( 0.2896124015972201e+01 ) ) ,
|
|
81
|
+
a43 ( static_cast< value_type >( 0.9986419139977817e+00 ) ) ,
|
|
82
|
+
c51 ( static_cast< value_type >( 0.7496443313967647e+01 ) ) ,
|
|
83
|
+
c52 ( static_cast< value_type >( -0.1024680431464352e+02 ) ) ,
|
|
84
|
+
c53 ( static_cast< value_type >( -0.3399990352819905e+02 ) ) ,
|
|
85
|
+
c54 ( static_cast< value_type >( 0.1170890893206160e+02 ) ) ,
|
|
86
|
+
a51 ( static_cast< value_type >( 0.1221224509226641e+01 ) ) ,
|
|
87
|
+
a52 ( static_cast< value_type >( 0.6019134481288629e+01 ) ) ,
|
|
88
|
+
a53 ( static_cast< value_type >( 0.1253708332932087e+02 ) ) ,
|
|
89
|
+
a54 ( static_cast< value_type >( -0.6878860361058950e+00 ) ) ,
|
|
90
|
+
c61 ( static_cast< value_type >( 0.8083246795921522e+01 ) ) ,
|
|
91
|
+
c62 ( static_cast< value_type >( -0.7981132988064893e+01 ) ) ,
|
|
92
|
+
c63 ( static_cast< value_type >( -0.3152159432874371e+02 ) ) ,
|
|
93
|
+
c64 ( static_cast< value_type >( 0.1631930543123136e+02 ) ) ,
|
|
94
|
+
c65 ( static_cast< value_type >( -0.6058818238834054e+01 ) ) ,
|
|
95
|
+
d21 ( static_cast< value_type >( 0.1012623508344586e+02 ) ) ,
|
|
96
|
+
d22 ( static_cast< value_type >( -0.7487995877610167e+01 ) ) ,
|
|
97
|
+
d23 ( static_cast< value_type >( -0.3480091861555747e+02 ) ) ,
|
|
98
|
+
d24 ( static_cast< value_type >( -0.7992771707568823e+01 ) ) ,
|
|
99
|
+
d25 ( static_cast< value_type >( 0.1025137723295662e+01 ) ) ,
|
|
100
|
+
d31 ( static_cast< value_type >( -0.6762803392801253e+00 ) ) ,
|
|
101
|
+
d32 ( static_cast< value_type >( 0.6087714651680015e+01 ) ) ,
|
|
102
|
+
d33 ( static_cast< value_type >( 0.1643084320892478e+02 ) ) ,
|
|
103
|
+
d34 ( static_cast< value_type >( 0.2476722511418386e+02 ) ) ,
|
|
104
|
+
d35 ( static_cast< value_type >( -0.6594389125716872e+01 ) )
|
|
105
|
+
{}
|
|
106
|
+
|
|
107
|
+
const value_type gamma;
|
|
108
|
+
const value_type d1 , d2 , d3 , d4;
|
|
109
|
+
const value_type c2 , c3 , c4;
|
|
110
|
+
const value_type c21 ;
|
|
111
|
+
const value_type a21;
|
|
112
|
+
const value_type c31 , c32;
|
|
113
|
+
const value_type a31 , a32;
|
|
114
|
+
const value_type c41 , c42 , c43;
|
|
115
|
+
const value_type a41 , a42 , a43;
|
|
116
|
+
const value_type c51 , c52 , c53 , c54;
|
|
117
|
+
const value_type a51 , a52 , a53 , a54;
|
|
118
|
+
const value_type c61 , c62 , c63 , c64 , c65;
|
|
119
|
+
const value_type d21 , d22 , d23 , d24 , d25;
|
|
120
|
+
const value_type d31 , d32 , d33 , d34 , d35;
|
|
121
|
+
|
|
122
|
+
static const order_type stepper_order = 4;
|
|
123
|
+
static const order_type error_order = 3;
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
template< class Value , class Coefficients = default_rosenbrock_coefficients< Value > , class Resizer = initially_resizer >
|
|
129
|
+
class rosenbrock4
|
|
130
|
+
{
|
|
131
|
+
private:
|
|
132
|
+
|
|
133
|
+
public:
|
|
134
|
+
|
|
135
|
+
typedef Value value_type;
|
|
136
|
+
typedef boost::numeric::ublas::vector< value_type > state_type;
|
|
137
|
+
typedef state_type deriv_type;
|
|
138
|
+
typedef value_type time_type;
|
|
139
|
+
typedef boost::numeric::ublas::matrix< value_type > matrix_type;
|
|
140
|
+
typedef boost::numeric::ublas::permutation_matrix< size_t > pmatrix_type;
|
|
141
|
+
typedef Resizer resizer_type;
|
|
142
|
+
typedef Coefficients rosenbrock_coefficients;
|
|
143
|
+
typedef stepper_tag stepper_category;
|
|
144
|
+
typedef unsigned short order_type;
|
|
145
|
+
|
|
146
|
+
typedef state_wrapper< state_type > wrapped_state_type;
|
|
147
|
+
typedef state_wrapper< deriv_type > wrapped_deriv_type;
|
|
148
|
+
typedef state_wrapper< matrix_type > wrapped_matrix_type;
|
|
149
|
+
typedef state_wrapper< pmatrix_type > wrapped_pmatrix_type;
|
|
150
|
+
|
|
151
|
+
typedef rosenbrock4< Value , Coefficients , Resizer > stepper_type;
|
|
152
|
+
|
|
153
|
+
const static order_type stepper_order = rosenbrock_coefficients::stepper_order;
|
|
154
|
+
const static order_type error_order = rosenbrock_coefficients::error_order;
|
|
155
|
+
|
|
156
|
+
rosenbrock4( void )
|
|
157
|
+
: m_resizer() , m_x_err_resizer() ,
|
|
158
|
+
m_jac() , m_pm() ,
|
|
159
|
+
m_dfdt() , m_dxdt() , m_dxdtnew() ,
|
|
160
|
+
m_g1() , m_g2() , m_g3() , m_g4() , m_g5() ,
|
|
161
|
+
m_cont3() , m_cont4() , m_xtmp() , m_x_err() ,
|
|
162
|
+
m_coef()
|
|
163
|
+
{ }
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
order_type order() const { return stepper_order; }
|
|
167
|
+
|
|
168
|
+
template< class System >
|
|
169
|
+
void do_step( System system , const state_type &x , time_type t , state_type &xout , time_type dt , state_type &xerr )
|
|
170
|
+
{
|
|
171
|
+
// get the system and jacobi function
|
|
172
|
+
typedef typename odeint::unwrap_reference< System >::type system_type;
|
|
173
|
+
typedef typename odeint::unwrap_reference< typename system_type::first_type >::type deriv_func_type;
|
|
174
|
+
typedef typename odeint::unwrap_reference< typename system_type::second_type >::type jacobi_func_type;
|
|
175
|
+
system_type &sys = system;
|
|
176
|
+
deriv_func_type &deriv_func = sys.first;
|
|
177
|
+
jacobi_func_type &jacobi_func = sys.second;
|
|
178
|
+
|
|
179
|
+
const size_t n = x.size();
|
|
180
|
+
|
|
181
|
+
m_resizer.adjust_size(x, [this](auto&& arg) { return this->resize_impl<state_type>(std::forward<decltype(arg)>(arg)); });
|
|
182
|
+
|
|
183
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
184
|
+
m_pm.m_v( i ) = i;
|
|
185
|
+
|
|
186
|
+
deriv_func( x , m_dxdt.m_v , t );
|
|
187
|
+
jacobi_func( x , m_jac.m_v , t , m_dfdt.m_v );
|
|
188
|
+
|
|
189
|
+
m_jac.m_v *= -1.0;
|
|
190
|
+
m_jac.m_v += 1.0 / m_coef.gamma / dt * boost::numeric::ublas::identity_matrix< value_type >( n );
|
|
191
|
+
boost::numeric::ublas::lu_factorize( m_jac.m_v , m_pm.m_v );
|
|
192
|
+
|
|
193
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
194
|
+
m_g1.m_v[i] = m_dxdt.m_v[i] + dt * m_coef.d1 * m_dfdt.m_v[i];
|
|
195
|
+
boost::numeric::ublas::lu_substitute( m_jac.m_v , m_pm.m_v , m_g1.m_v );
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
199
|
+
m_xtmp.m_v[i] = x[i] + m_coef.a21 * m_g1.m_v[i];
|
|
200
|
+
deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + m_coef.c2 * dt );
|
|
201
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
202
|
+
m_g2.m_v[i] = m_dxdtnew.m_v[i] + dt * m_coef.d2 * m_dfdt.m_v[i] + m_coef.c21 * m_g1.m_v[i] / dt;
|
|
203
|
+
boost::numeric::ublas::lu_substitute( m_jac.m_v , m_pm.m_v , m_g2.m_v );
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
207
|
+
m_xtmp.m_v[i] = x[i] + m_coef.a31 * m_g1.m_v[i] + m_coef.a32 * m_g2.m_v[i];
|
|
208
|
+
deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + m_coef.c3 * dt );
|
|
209
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
210
|
+
m_g3.m_v[i] = m_dxdtnew.m_v[i] + dt * m_coef.d3 * m_dfdt.m_v[i] + ( m_coef.c31 * m_g1.m_v[i] + m_coef.c32 * m_g2.m_v[i] ) / dt;
|
|
211
|
+
boost::numeric::ublas::lu_substitute( m_jac.m_v , m_pm.m_v , m_g3.m_v );
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
215
|
+
m_xtmp.m_v[i] = x[i] + m_coef.a41 * m_g1.m_v[i] + m_coef.a42 * m_g2.m_v[i] + m_coef.a43 * m_g3.m_v[i];
|
|
216
|
+
deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + m_coef.c4 * dt );
|
|
217
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
218
|
+
m_g4.m_v[i] = m_dxdtnew.m_v[i] + dt * m_coef.d4 * m_dfdt.m_v[i] + ( m_coef.c41 * m_g1.m_v[i] + m_coef.c42 * m_g2.m_v[i] + m_coef.c43 * m_g3.m_v[i] ) / dt;
|
|
219
|
+
boost::numeric::ublas::lu_substitute( m_jac.m_v , m_pm.m_v , m_g4.m_v );
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
223
|
+
m_xtmp.m_v[i] = x[i] + m_coef.a51 * m_g1.m_v[i] + m_coef.a52 * m_g2.m_v[i] + m_coef.a53 * m_g3.m_v[i] + m_coef.a54 * m_g4.m_v[i];
|
|
224
|
+
deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + dt );
|
|
225
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
226
|
+
m_g5.m_v[i] = m_dxdtnew.m_v[i] + ( m_coef.c51 * m_g1.m_v[i] + m_coef.c52 * m_g2.m_v[i] + m_coef.c53 * m_g3.m_v[i] + m_coef.c54 * m_g4.m_v[i] ) / dt;
|
|
227
|
+
boost::numeric::ublas::lu_substitute( m_jac.m_v , m_pm.m_v , m_g5.m_v );
|
|
228
|
+
|
|
229
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
230
|
+
m_xtmp.m_v[i] += m_g5.m_v[i];
|
|
231
|
+
deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + dt );
|
|
232
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
233
|
+
xerr[i] = m_dxdtnew.m_v[i] + ( m_coef.c61 * m_g1.m_v[i] + m_coef.c62 * m_g2.m_v[i] + m_coef.c63 * m_g3.m_v[i] + m_coef.c64 * m_g4.m_v[i] + m_coef.c65 * m_g5.m_v[i] ) / dt;
|
|
234
|
+
boost::numeric::ublas::lu_substitute( m_jac.m_v , m_pm.m_v , xerr );
|
|
235
|
+
|
|
236
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
237
|
+
xout[i] = m_xtmp.m_v[i] + xerr[i];
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
template< class System >
|
|
241
|
+
void do_step( System system , state_type &x , time_type t , time_type dt , state_type &xerr )
|
|
242
|
+
{
|
|
243
|
+
do_step( system , x , t , x , dt , xerr );
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/*
|
|
247
|
+
* do_step without error output - just calls above functions with and neglects the error estimate
|
|
248
|
+
*/
|
|
249
|
+
template< class System >
|
|
250
|
+
void do_step( System system , const state_type &x , time_type t , state_type &xout , time_type dt )
|
|
251
|
+
{
|
|
252
|
+
m_x_err_resizer.adjust_size(x, [this](auto&& arg) { return this->resize_x_err<state_type>(std::forward<decltype(arg)>(arg)); });
|
|
253
|
+
do_step( system , x , t , xout , dt , m_x_err.m_v );
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
template< class System >
|
|
257
|
+
void do_step( System system , state_type &x , time_type t , time_type dt )
|
|
258
|
+
{
|
|
259
|
+
m_x_err_resizer.adjust_size(x, [this](auto&& arg) { return this->resize_x_err<state_type>(std::forward<decltype(arg)>(arg)); });
|
|
260
|
+
do_step( system , x , t , dt , m_x_err.m_v );
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
void prepare_dense_output()
|
|
264
|
+
{
|
|
265
|
+
const size_t n = m_g1.m_v.size();
|
|
266
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
267
|
+
{
|
|
268
|
+
m_cont3.m_v[i] = m_coef.d21 * m_g1.m_v[i] + m_coef.d22 * m_g2.m_v[i] + m_coef.d23 * m_g3.m_v[i] + m_coef.d24 * m_g4.m_v[i] + m_coef.d25 * m_g5.m_v[i];
|
|
269
|
+
m_cont4.m_v[i] = m_coef.d31 * m_g1.m_v[i] + m_coef.d32 * m_g2.m_v[i] + m_coef.d33 * m_g3.m_v[i] + m_coef.d34 * m_g4.m_v[i] + m_coef.d35 * m_g5.m_v[i];
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
void calc_state( time_type t , state_type &x ,
|
|
275
|
+
const state_type &x_old , time_type t_old ,
|
|
276
|
+
const state_type &x_new , time_type t_new )
|
|
277
|
+
{
|
|
278
|
+
const size_t n = m_g1.m_v.size();
|
|
279
|
+
time_type dt = t_new - t_old;
|
|
280
|
+
time_type s = ( t - t_old ) / dt;
|
|
281
|
+
time_type s1 = 1.0 - s;
|
|
282
|
+
for( size_t i=0 ; i<n ; ++i )
|
|
283
|
+
x[i] = x_old[i] * s1 + s * ( x_new[i] + s1 * ( m_cont3.m_v[i] + s * m_cont4.m_v[i] ) );
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
template< class StateType >
|
|
289
|
+
void adjust_size( const StateType &x )
|
|
290
|
+
{
|
|
291
|
+
resize_impl( x );
|
|
292
|
+
resize_x_err( x );
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
protected:
|
|
297
|
+
|
|
298
|
+
template< class StateIn >
|
|
299
|
+
bool resize_impl( const StateIn &x )
|
|
300
|
+
{
|
|
301
|
+
bool resized = false;
|
|
302
|
+
resized |= adjust_size_by_resizeability( m_dxdt , x , typename is_resizeable<deriv_type>::type() );
|
|
303
|
+
resized |= adjust_size_by_resizeability( m_dfdt , x , typename is_resizeable<deriv_type>::type() );
|
|
304
|
+
resized |= adjust_size_by_resizeability( m_dxdtnew , x , typename is_resizeable<deriv_type>::type() );
|
|
305
|
+
resized |= adjust_size_by_resizeability( m_xtmp , x , typename is_resizeable<state_type>::type() );
|
|
306
|
+
resized |= adjust_size_by_resizeability( m_g1 , x , typename is_resizeable<state_type>::type() );
|
|
307
|
+
resized |= adjust_size_by_resizeability( m_g2 , x , typename is_resizeable<state_type>::type() );
|
|
308
|
+
resized |= adjust_size_by_resizeability( m_g3 , x , typename is_resizeable<state_type>::type() );
|
|
309
|
+
resized |= adjust_size_by_resizeability( m_g4 , x , typename is_resizeable<state_type>::type() );
|
|
310
|
+
resized |= adjust_size_by_resizeability( m_g5 , x , typename is_resizeable<state_type>::type() );
|
|
311
|
+
resized |= adjust_size_by_resizeability( m_cont3 , x , typename is_resizeable<state_type>::type() );
|
|
312
|
+
resized |= adjust_size_by_resizeability( m_cont4 , x , typename is_resizeable<state_type>::type() );
|
|
313
|
+
resized |= adjust_size_by_resizeability( m_jac , x , typename is_resizeable<matrix_type>::type() );
|
|
314
|
+
resized |= adjust_size_by_resizeability( m_pm , x , typename is_resizeable<pmatrix_type>::type() );
|
|
315
|
+
return resized;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
template< class StateIn >
|
|
319
|
+
bool resize_x_err( const StateIn &x )
|
|
320
|
+
{
|
|
321
|
+
return adjust_size_by_resizeability( m_x_err , x , typename is_resizeable<state_type>::type() );
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
private:
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
resizer_type m_resizer;
|
|
328
|
+
resizer_type m_x_err_resizer;
|
|
329
|
+
|
|
330
|
+
wrapped_matrix_type m_jac;
|
|
331
|
+
wrapped_pmatrix_type m_pm;
|
|
332
|
+
wrapped_deriv_type m_dfdt , m_dxdt , m_dxdtnew;
|
|
333
|
+
wrapped_state_type m_g1 , m_g2 , m_g3 , m_g4 , m_g5;
|
|
334
|
+
wrapped_state_type m_cont3 , m_cont4;
|
|
335
|
+
wrapped_state_type m_xtmp;
|
|
336
|
+
wrapped_state_type m_x_err;
|
|
337
|
+
|
|
338
|
+
const rosenbrock_coefficients m_coef;
|
|
339
|
+
};
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
} // namespace odeint
|
|
343
|
+
} // namespace numeric
|
|
344
|
+
} // namespace boost
|
|
345
|
+
|
|
346
|
+
#endif // BOOST_NUMERIC_ODEINT_STEPPER_ROSENBROCK4_HPP_INCLUDED
|