| 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 | |
| 9 | #include "test_algorithm.hpp" |
| 10 | #include "test_algorithm1.hpp" |
| 11 | #include "test_algorithm2.hpp" |
| 12 | #include "test_algorithm3.hpp" |
| 13 | |
| 14 | /* test split in chunks to avoid problems with compilation object sizes */ |
| 15 | |
| 16 | void test_algorithm() |
| 17 | { |
| 18 | test_algorithm1(); |
| 19 | test_algorithm2(); |
| 20 | test_algorithm3(); |
| 21 | } |
| 22 |
