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

Fixing the linear diffusion.

parent 3a9ef536
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -127,7 +127,8 @@ class tnlMatrix : public tnlObject

   bool load( const tnlString& fileName );

   tnlMatrix< Real, Device, Index >& operator = ( const tnlMatrix< Real, Device, Index >& matrix );
   template< typename Real2 >
   tnlMatrix< Real, Device, Index >& operator = ( const tnlMatrix< Real2, Device, Index >& matrix );

   /*!
    * Computes permutation of the rows such that the rows would be
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@
#include <mesh/tnlGrid.h>
#include <mesh/tnlIdenticalGridGeometry.h>
#include <core/tnlHost.h>
#include <core/tnlSharedVector.h>

template< typename Mesh >
class tnlLinearDiffusion
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
#include <schemes/gradient/tnlCentralFDMGradient.h>

template< typename MeshType,
          typename PressureGradient >
          typename PressureGradient = tnlCentralFDMGradient >
class tnlLaxFridrichs
{
};