algorithm.hpp 578 B

1234567891011121314151617181920
  1. // Copyright 2019 Hans Dembinski
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt
  5. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_HISTOGRAM_ALGORITHM_HPP
  7. #define BOOST_HISTOGRAM_ALGORITHM_HPP
  8. /**
  9. \file boost/histogram/algorithm.hpp
  10. Includes all algorithm headers of the Boost.Histogram library.
  11. */
  12. #include <boost/histogram/algorithm/empty.hpp>
  13. #include <boost/histogram/algorithm/project.hpp>
  14. #include <boost/histogram/algorithm/reduce.hpp>
  15. #include <boost/histogram/algorithm/sum.hpp>
  16. #endif