Skip to content
Snippets Groups Projects

Add (static) size() method to MultiTypeBlockMatrix

Merged Carsten Gräser requested to merge feature/multitypeblockmatrix-size into master
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
@@ -57,6 +57,12 @@ namespace Dune {
return 1+sizeof...(Args);
}
/** \brief Return the number of matrix rows */
static constexpr std::size_t size()
{
return 1+sizeof...(Args);
}
/** \brief Return the number of matrix columns */
static constexpr std::size_t M()
{
Loading