Wildmeshing Toolkit
TupleCellLessThanFunctor.hpp
Go to the documentation of this file.
1 #pragma once
2 #include <wmtk/Tuple.hpp>
3 
4 namespace wmtk::utils {
6 {
7 public:
8  bool operator()(const Tuple& a, const Tuple& b) const
9  {
10  return a.m_global_cid < b.m_global_cid;
11  }
12 };
13 } // namespace wmtk::utils
int64_t m_global_cid
Definition: Tuple.hpp:46
bool operator()(const Tuple &a, const Tuple &b) const