tessellation.cpp
1 #include "tessellation.hpp"
2 #include "../misc/universal_error.hpp"
3 #include <cmath>
4 
5 int Tessellation::GetOriginalIndex(int /*point*/) const
6 {
7  throw UniversalError("Method is only availible for Periodic boundaries");
8 }
9 
10 Tessellation::~Tessellation()
11 {}
virtual int GetOriginalIndex(int point) const
Returns the original index of the duplicated point.
Definition: tessellation.cpp:5
Container for error reports.
Abstract class for the tessellation.