12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef BOOST_NUMERIC_ODEINT_STEPPER_BASE_ALGEBRA_STEPPER_BASE_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_STEPPER_BASE_ALGEBRA_STEPPER_BASE_HPP_INCLUDED
- namespace boost {
- namespace numeric {
- namespace odeint {
- template< class Algebra , class Operations >
- class algebra_stepper_base
- {
- public:
- typedef Algebra algebra_type;
- typedef Operations operations_type;
- algebra_stepper_base( const algebra_type &algebra = algebra_type() )
- : m_algebra( algebra ) { }
- algebra_type& algebra()
- {
- return m_algebra;
- }
- const algebra_type& algebra() const
- {
- return m_algebra;
- }
- protected:
- algebra_type m_algebra;
- };
-
-
-
- }
- }
- }
- #endif
|