Wildmeshing Toolkit
Loading...
Searching...
No Matches
FunctionInvariant.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <memory>
4#include "Invariant.hpp"
5
6namespace wmtk {
7
8namespace function {
9class PerSimplexFunction;
10}
11
12namespace invariants {
13
15{
16public:
18 const PrimitiveType type,
19 const std::shared_ptr<function::PerSimplexFunction>& func);
20
21 bool after(
22 const std::vector<Tuple>& top_dimension_tuples_before,
23 const std::vector<Tuple>& top_dimension_tuples_after) const override;
24
25private:
26 std::shared_ptr<function::PerSimplexFunction> m_func;
28};
29} // namespace invariants
30} // namespace wmtk
std::shared_ptr< function::PerSimplexFunction > m_func
bool after(const std::vector< Tuple > &top_dimension_tuples_before, const std::vector< Tuple > &top_dimension_tuples_after) const override