Skip to content
Snippets Groups Projects
Commit 8c239ea2 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Fixing the linear diffusion.

parent 3a9ef536
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
......@@ -24,7 +24,7 @@
#include <schemes/gradient/tnlCentralFDMGradient.h>
template< typename MeshType,
typename PressureGradient >
typename PressureGradient = tnlCentralFDMGradient >
class tnlLaxFridrichs
{
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment