Wildmeshing Toolkit
Loading...
Searching...
No Matches
TupleCellLessThanFunctor.hpp
Go to the documentation of this file.
1#pragma once
2#include <wmtk/Tuple.hpp>
3
4namespace wmtk::utils {
6{
7public:
8 bool operator()(const Tuple& a, const Tuple& b) const
9 {
10 return a.global_cid() < b.global_cid();
11 }
12};
13} // namespace wmtk::utils
The Tuple is the basic navigation tool in our mesh data structure.
Definition Tuple.hpp:19
int64_t global_cid() const
Definition Tuple.hxx:47
bool operator()(const Tuple &a, const Tuple &b) const