Define FAKE_TUPLE

This commit is contained in:
Alejandro Gallo 2021-10-15 18:58:55 +02:00
parent 3dd8af052d
commit 944e93dc33
2 changed files with 4 additions and 0 deletions

View File

@ -1416,6 +1416,8 @@ whereas a partial tuple is a two dimensional subset of these three.
using ABCTuple = std::array<size_t, 3>;
using PartialTuple = std::array<size_t, 2>;
using ABCTuples = std::vector<ABCTuple>;
constexpr ABCTuple FAKE_TUPLE = {0, 0, 0};
#+end_src
*** Naive list

View File

@ -15,6 +15,8 @@ namespace atrip {
using ABCTuple = std::array<size_t, 3>;
using PartialTuple = std::array<size_t, 2>;
using ABCTuples = std::vector<ABCTuple>;
constexpr ABCTuple FAKE_TUPLE = {0, 0, 0};
// Tuples types:1 ends here
// [[file:../../atrip.org::*Naive list][Naive list:1]]