diff --git a/include/boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp b/include/boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp index c22a3a06..7516d440 100644 --- a/include/boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp +++ b/include/boost/numeric/odeint/integrate/detail/integrate_adaptive.hpp @@ -25,7 +25,6 @@ #include #include -#include #include #include #include diff --git a/include/boost/numeric/odeint/integrate/integrate_const.hpp b/include/boost/numeric/odeint/integrate/integrate_const.hpp index 41914a9c..76a7b074 100644 --- a/include/boost/numeric/odeint/integrate/integrate_const.hpp +++ b/include/boost/numeric/odeint/integrate/integrate_const.hpp @@ -23,7 +23,6 @@ #include #include -#include #include #include #include diff --git a/include/boost/numeric/odeint/integrate/integrate_n_steps.hpp b/include/boost/numeric/odeint/integrate/integrate_n_steps.hpp index 42e1cdd1..48eaa510 100644 --- a/include/boost/numeric/odeint/integrate/integrate_n_steps.hpp +++ b/include/boost/numeric/odeint/integrate/integrate_n_steps.hpp @@ -22,7 +22,6 @@ #include #include -#include #include namespace boost { diff --git a/include/boost/numeric/odeint/integrate/integrate_times.hpp b/include/boost/numeric/odeint/integrate/integrate_times.hpp index 99e16b48..2f85b47c 100644 --- a/include/boost/numeric/odeint/integrate/integrate_times.hpp +++ b/include/boost/numeric/odeint/integrate/integrate_times.hpp @@ -24,7 +24,6 @@ #include #include -#include #include #include diff --git a/include/boost/numeric/odeint/integrate/null_checker.hpp b/include/boost/numeric/odeint/integrate/null_checker.hpp deleted file mode 100644 index 1588c865..00000000 --- a/include/boost/numeric/odeint/integrate/null_checker.hpp +++ /dev/null @@ -1,37 +0,0 @@ -/* - [auto_generated] - boost/numeric/odeint/integrate/null_checker.hpp - - [begin_description] - null_checker - [end_description] - - Copyright 2015 Mario Mulansky - - Distributed under the Boost Software License, Version 1.0. - (See accompanying file LICENSE_1_0.txt or - copy at http://www.boost.org/LICENSE_1_0.txt) - */ - - -#ifndef BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_CHECKER_HPP_INCLUDED -#define BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_CHECKER_HPP_INCLUDED - -namespace boost { -namespace numeric { -namespace odeint { - -struct null_checker -{ - void operator()( void ) const - { } - - void reset( void ) const - { } -}; - -} // namespace odeint -} // namespace numeric -} // namespace boost - -#endif // BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_CHECKER_HPP_INCLUDED diff --git a/test/integrate_overflow.cpp b/test/integrate_overflow.cpp index 7a6c2270..0dba4046 100644 --- a/test/integrate_overflow.cpp +++ b/test/integrate_overflow.cpp @@ -78,7 +78,6 @@ BOOST_AUTO_TEST_CASE( test_integrate_const ) // check the function signatures with normal stepper integrate_const(stepper_type(), lorenz, x, 0.0, 10.0, 1.0); integrate_const(stepper_type(), lorenz, x, 0.0, 10.0, 1.0, null_observer()); - integrate_const(stepper_type(), lorenz, x, 0.0, 10.0, 1.0, null_observer(), null_checker()); // no exceptions expected for normal steppers integrate_const(stepper_type(), lorenz, x, 0.0, 10.0, 1.0, null_observer(), max_step_checker(10)); @@ -115,7 +114,6 @@ BOOST_AUTO_TEST_CASE( test_integrate_n_steps ) // check the function signatures with normal stepper integrate_n_steps(stepper_type(), lorenz, x, 0.0, 1.0, 10); integrate_n_steps(stepper_type(), lorenz, x, 0.0, 1.0, 10, null_observer()); - integrate_n_steps(stepper_type(), lorenz, x, 0.0, 1.0, 10, null_observer(), null_checker()); // no exceptions expected for normal steppers integrate_n_steps(stepper_type(), lorenz, x, 0.0, 1.0, 10, null_observer(), max_step_checker(10)); @@ -153,7 +151,6 @@ BOOST_AUTO_TEST_CASE( test_integrate_times ) // check the function signatures with normal stepper integrate_times(stepper_type(), lorenz, x, t0, t1, 1.0 , push_back_time(times)); - integrate_times(stepper_type(), lorenz, x, t0, t1, 1.0 , push_back_time(times), null_checker()); // no exceptions expected for big enough step size integrate_times(stepper_type(), lorenz, x, t0, t1, 1.0 , push_back_time(times), max_step_checker(10)); // if dt*max_steps < observer time difference we expect an exception