#pragma once namespace AMDiS {
class DOFVectorInterface
{ public:
/// Virtual destructor
~DOFVectorInterface() = default;
/// Change dimension of DOFVector to dimension of basis virtual void compress() = 0;
}; } // end namespace AMDiS