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

Renaming getExplicitRHS to getExplicitUpdate.

parent f5be4949
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ class advectionProblem:
      void bindDofs( const MeshPointer& mesh,
                     DofVectorPointer& dofs );

      void getExplicitRHS( const RealType& time,
      void getExplicitUpdate( const RealType& time,
                           const RealType& tau,
                           const MeshPointer& mesh,
                           DofVectorPointer& _u,
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ template< typename Mesh,
          typename DifferentialOperator >
void
advectionProblem< Mesh, BoundaryCondition, RightHandSide, DifferentialOperator >::
getExplicitRHS( const RealType& time,
getExplicitUpdate( const RealType& time,
                const RealType& tau,
                const MeshPointer& mesh,
                DofVectorPointer& _u,
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ class eulerProblem:
      void bindDofs( const MeshPointer& mesh,
                     DofVectorPointer& dofs );

      void getExplicitRHS( const RealType& time,
      void getExplicitUpdate( const RealType& time,
                           const RealType& tau,
                           const MeshPointer& mesh,
                           DofVectorPointer& _u,
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ template< typename Mesh,
          typename DifferentialOperator >
void
eulerProblem< Mesh, BoundaryCondition, RightHandSide, DifferentialOperator >::
getExplicitRHS( const RealType& time,
getExplicitUpdate( const RealType& time,
                const RealType& tau,
                const MeshPointer& mesh,
                DofVectorPointer& _u,
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ class eulerProblem:
      void bindDofs( const MeshPointer& mesh,
                     DofVectorPointer& dofs );

      void getExplicitRHS( const RealType& time,
      void getExplicitUpdate( const RealType& time,
                           const RealType& tau,
                           const MeshPointer& mesh,
                           DofVectorPointer& _u,
Loading