test_algorithm.cpp 566 B

123456789101112131415161718192021
  1. /* Copyright 2016 Joaquin M Lopez Munoz.
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * See http://www.boost.org/libs/poly_collection for library home page.
  7. */
  8. #include "test_algorithm.hpp"
  9. #include "test_algorithm1.hpp"
  10. #include "test_algorithm2.hpp"
  11. #include "test_algorithm3.hpp"
  12. /* test split in chunks to avoid problems with compilation object sizes */
  13. void test_algorithm()
  14. {
  15. test_algorithm1();
  16. test_algorithm2();
  17. test_algorithm3();
  18. }