null_observer.hpp 829 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. [auto_generated]
  3. boost/numeric/odeint/integrate/null_observer.hpp
  4. [begin_description]
  5. null_observer
  6. [end_description]
  7. Copyright 2011-2012 Karsten Ahnert
  8. Copyright 2011-2012 Mario Mulansky
  9. Distributed under the Boost Software License, Version 1.0.
  10. (See accompanying file LICENSE_1_0.txt or
  11. copy at http://www.boost.org/LICENSE_1_0.txt)
  12. */
  13. #ifndef BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_OBSERVER_HPP_INCLUDED
  14. #define BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_OBSERVER_HPP_INCLUDED
  15. namespace boost {
  16. namespace numeric {
  17. namespace odeint {
  18. struct null_observer
  19. {
  20. template< class State , class Time >
  21. void operator()( const State& /* x */ , Time /* t */ ) const
  22. {
  23. }
  24. };
  25. } // namespace odeint
  26. } // namespace numeric
  27. } // namespace boost
  28. #endif // BOOST_NUMERIC_ODEINT_INTEGRATE_NULL_OBSERVER_HPP_INCLUDED