Commit e1c81072 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Renamed Vertex to Point.

parent b7feb60f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ class advectionSetter
          enum { Dimension = MeshType::getDimension() };
          typedef LaxFridrichs< MeshType, Real, Index > ApproximateOperator;
          typedef advectionRhs< MeshType, Real > RightHandSide;
          typedef Containers::StaticVector < MeshType::getDimension(), Real > Vertex;
          typedef Containers::StaticVector < MeshType::getDimension(), Real > Point;

         /****
          * Resolve the template arguments of your solver here.
+2 −2
Original line number Diff line number Diff line
@@ -23,8 +23,8 @@ template< typename Mesh, typename Real >class advectionRhs
      Real operator()( const MeshEntity& entity,
                       const Real& time = 0.0 ) const
      {
         typedef typename MeshEntity::MeshType::VertexType VertexType;
         VertexType v = entity.getCenter();
         typedef typename MeshEntity::MeshType::PointType PointType;
         PointType v = entity.getCenter();
         return 0.0;
      }
};
+2 −2
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ class heatEquationSetter
   typedef Device DeviceType;
   typedef Index IndexType;

   typedef Containers::StaticVector< MeshType::meshDimension, Real > Vertex;
   typedef Containers::StaticVector< MeshType::meshDimension, Real > Point;

   static bool run( const Config::ParameterContainer& parameters )
   {
@@ -62,7 +62,7 @@ class heatEquationSetter
      typedef Operators::ExactLinearDiffusion< Dimension > ExactOperator;
      typedef Functions::TestFunction< MeshType::meshDimension, Real, Device > TestFunction;
      typedef HeatEquationEocRhs< ExactOperator, TestFunction > RightHandSide;
      typedef Containers::StaticVector < MeshType::meshDimension, Real > Vertex;
      typedef Containers::StaticVector < MeshType::meshDimension, Real > Point;
      typedef Operators::DirichletBoundaryConditions< MeshType, TestFunction, Dimension, Real, Index > BoundaryConditions;
      typedef HeatEquationEocProblem< MeshType, BoundaryConditions, RightHandSide, ApproximateOperator > Solver;
      SolverStarter solverStarter;
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ class eulerSetter
          enum { Dimension = MeshType::getDimension() };
          typedef LaxFridrichs< MeshType, Real, Index > ApproximateOperator;
          typedef eulerRhs< MeshType, Real > RightHandSide;
          typedef Containers::StaticVector < MeshType::getDimension(), Real > Vertex;
          typedef Containers::StaticVector < MeshType::getDimension(), Real > Point;

         /****
          * Resolve the template arguments of your solver here.
+2 −2
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@ template< typename Mesh, typename Real >class eulerRhs
      Real operator()( const MeshEntity& entity,
                       const Real& time = 0.0 ) const
      {
         typedef typename MeshEntity::MeshType::VertexType VertexType;
         VertexType v = entity.getCenter();
         typedef typename MeshEntity::MeshType::PointType PointType;
         PointType v = entity.getCenter();
         return 0.0;
      }
};
Loading