test-stl-compat.C 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // (c) Daniel Llorens - 2014
  2. // This library is free software; you can redistribute it and/or modify it under
  3. // the terms of the GNU Lesser General Public License as published by the Free
  4. // Software Foundation; either version 3 of the License, or (at your option) any
  5. // later version.
  6. /// @file test-stl-compat.C
  7. /// @brief Using ra:: array & iterator types with the STL algos & types.
  8. // ra:: iterators are only partially STL compatible, because of copiability,
  9. // lack of random access (which for the STL also means linear, but at least for
  10. // 1D expressions it should be available), etc. Check some cases here.
  11. #include <iostream>
  12. #include <iterator>
  13. #include "ra/complex.H"
  14. #include "ra/test.H"
  15. #include "ra/big.H"
  16. #include "ra/operators.H"
  17. #include "ra/io.H"
  18. using std::cout; using std::endl; using std::flush;
  19. int main()
  20. {
  21. TestRecorder tr;
  22. tr.section("random access iterators");
  23. {
  24. // TODO rank-0 begin()/end() in ra::Small
  25. // TODO others?
  26. }
  27. tr.section("copyable iterators, but not random access");
  28. {
  29. {
  30. ra::Big<int, 1> a = { 1, 2, 3 };
  31. ra::Big<int, 1> b = { 0, 0, 0 };
  32. std::transform(a.begin(), a.end(), b.begin(), [](int a) { return -a; });
  33. tr.test_eq(a, -b);
  34. }
  35. {
  36. ra::Big<int, 2> a({2, 3}, ra::_0 - 2*ra::_1);
  37. ra::Big<int, 2> b({2, 3}, 99);
  38. std::transform(a.begin(), a.end(), b.begin(), [](int a) { return -a; });
  39. tr.test_eq(a, -b);
  40. }
  41. {
  42. ra::Small<int, 2, 3> a(ra::_0 - 2*ra::_1);
  43. ra::Small<int, 2, 3> b(99);
  44. std::transform(a.begin(), a.end(), b.begin(), [](int a) { return -a; });
  45. tr.test_eq(a, -b);
  46. }
  47. }
  48. tr.section("raw, slippery pointers");
  49. {
  50. ra::Big<int, 1> a = {1, 2, 3};
  51. int b[] = { +1, -1, +1 };
  52. tr.test_eq(ra::Small<int, 3> {2, 1, 4}, a + ra::ptr(b));
  53. ra::ptr(b) = ra::Small<int, 3> {7, 4, 5};
  54. tr.test_eq(ra::Small<int, 3> {7, 4, 5}, ra::ptr(b));
  55. int cp[3] = {1, 2, 3};
  56. // ra::Big<int, 1> c({3}, &cp[0]); // forbidden, confusing for higher rank c (pointer matches as rank 1).
  57. ra::Big<int, 1> c({3}, ra::ptr(cp));
  58. tr.test_eq(ra::Small<int, 3> {1, 2, 3}, c);
  59. }
  60. tr.section("[ra12] check that begin() and end() match for empty views");
  61. {
  62. ra::Big<int, 3> aa({0, 2, 3}, 0.);
  63. auto a = aa(ra::all, 1);
  64. tr.info("begin ", a.begin().ii.c.p, " end ", a.end().ii.c.p).test(a.begin()==a.end());
  65. }
  66. return tr.summary();
  67. }