1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-12-12 08:44:40 +00:00

Name changes

This commit is contained in:
Peter Boyle
2025-10-22 16:46:15 -04:00
parent a71ba05bd7
commit 77b2e9fb61

View File

@@ -59,7 +59,7 @@ public:
}; };
template< class Gimpl> template< class Gimpl>
class IcosahedralEdgeSupport { class IcosahedralSupport {
public: public:
// Move to inherit types macro as before // Move to inherit types macro as before
typedef typename Gimpl::GaugeField GaugeField; typedef typename Gimpl::GaugeField GaugeField;
@@ -74,7 +74,7 @@ public:
IcosahedralStencil NNev; // vertex neighbours but in edge domain IcosahedralStencil NNev; // vertex neighbours but in edge domain
IcosahedralStencil NNvv; // vertex neighbours with vertex domain IcosahedralStencil NNvv; // vertex neighbours with vertex domain
IcosahedralEdgeSupport(GridBase *_VertexGrid,GridBase *_EdgeGrid) IcosahedralSupport(GridBase *_VertexGrid,GridBase *_EdgeGrid)
: FaceStencil (_EdgeGrid), NNee(_EdgeGrid), NNev(_VertexGrid), NNvv(_VertexGrid), VertexGrid(_VertexGrid), EdgeGrid(_EdgeGrid) : FaceStencil (_EdgeGrid), NNee(_EdgeGrid), NNev(_VertexGrid), NNvv(_VertexGrid), VertexGrid(_VertexGrid), EdgeGrid(_EdgeGrid)
{ {
FaceStencil.FaceStencil(); FaceStencil.FaceStencil();
@@ -530,7 +530,7 @@ int main (int argc, char ** argv)
} }
std::cout << GridLogMessage << "Creating face stencil"<<std::endl; std::cout << GridLogMessage << "Creating face stencil"<<std::endl;
IcosahedralEdgeSupport<IcosahedralGimpl> Support(&VertexGrid,&EdgeGrid); IcosahedralSupport<IcosahedralGimpl> Support(&VertexGrid,&EdgeGrid);
std::cout << GridLogMessage << " Calling Test Geometry "<<std::endl; std::cout << GridLogMessage << " Calling Test Geometry "<<std::endl;
Support.FaceStencil.TestGeometry(); Support.FaceStencil.TestGeometry();