Commit 060e95fa authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed assert in TestFunction_impl.h

parent 0a0ef1b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -412,7 +412,7 @@ TestFunction< FunctionDimension, Real, Device >::
getPartialDerivative( const PointType& vertex,
          const Real& time ) const
{
   TNL_ASSERT( this->function != 0, "The test function was not set properly." );
   TNL_ASSERT_TRUE( this->function, "The test function was not set properly." );
   using namespace TNL::Functions::Analytic;
   using namespace TNL::Operators::Analytic;
   Real scale( 1.0 );