euclidean_ring.cpp 769 B

12345678910111213141516171819202122232425262728
  1. // Copyright Louis Dionne 2013-2017
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
  4. #include <boost/hana/div.hpp>
  5. #include <boost/hana/mod.hpp>
  6. #include <boost/hana/tuple.hpp>
  7. #include <laws/euclidean_ring.hpp>
  8. namespace hana = boost::hana;
  9. int main() {
  10. hana::test::TestEuclideanRing<int>{hana::make_tuple(0,1,2,3,4,5)};
  11. hana::test::TestEuclideanRing<long>{hana::make_tuple(0l,1l,2l,3l,4l,5l)};
  12. // div
  13. {
  14. static_assert(hana::div(6, 4) == 6 / 4, "");
  15. static_assert(hana::div(7, -3) == 7 / -3, "");
  16. }
  17. // mod
  18. {
  19. static_assert(hana::mod(6, 4) == 6 % 4, "");
  20. static_assert(hana::mod(7, -3) == 7 % -3, "");
  21. }
  22. }