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

Added MatrixType.h.

parent 15308a7c
No related branches found
No related tags found
1 merge request!48Segments
/***************************************************************************
MatrixType.h - description
-------------------
begin : Dec 28, 2019
copyright : (C) 2019 by Tomas Oberhuber
email : tomas.oberhuber@fjfi.cvut.cz
***************************************************************************/
/* See Copyright Notice in tnl/Copyright */
#pragma once
namespace TNL {
namespace Matrices {
struct GeneralMatrix
{
static constexpr bool isSymmetric() { return false; }
};
struct SymmetricMatrix
{
static constexpr bool isSymmetric() { return true; }
};
} //namespace Matrices
} //namespace TNL
\ No newline at end of file
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