mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Move MatrixBlock specializations inside namespace.
This is necessary since the calls are ns-qualified in the matrix market code.
This commit is contained in:
parent
2992ec25d8
commit
66ff942b2f
@ -44,19 +44,20 @@ namespace MatrixMarketImpl
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace MatrixMarketImpl
|
template<class M>
|
||||||
|
struct mm_multipliers;
|
||||||
|
|
||||||
template<class M>
|
template <typename T, int i, int j, typename A>
|
||||||
struct mm_multipliers;
|
struct mm_multipliers<BCRSMatrix<Opm::MatrixBlock<T,i,j>, A>>
|
||||||
|
{
|
||||||
template <typename T, int i, int j, typename A>
|
|
||||||
struct mm_multipliers<BCRSMatrix<Opm::MatrixBlock<T,i,j>, A>>
|
|
||||||
{
|
|
||||||
enum {
|
enum {
|
||||||
rows = i,
|
rows = i,
|
||||||
cols = j
|
cols = j
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
} // namespace MatrixMarketImpl
|
||||||
|
|
||||||
|
|
||||||
} // namespace Dune
|
} // namespace Dune
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user