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

Fixe of boundary conditions in HeatEquationBenchmarkProblem.

parent 7e5a22a3
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -608,10 +608,13 @@ void
HeatEquationBenchmarkProblem< Mesh, BoundaryCondition, RightHandSide, DifferentialOperator >::
applyBoundaryConditions( const RealType& time,
                         DofVectorPointer& uDofs )
{
   if( this->cudaKernelType == "templated" )
   {
      this->bindDofs( uDofs );
      this->explicitUpdater.template applyBoundaryConditions< typename Mesh::Cell >( this->getMesh(), time, this->u );
   }
}


template< typename Mesh,