Temporary fix: scalarSquareMatrix tools
This commit is contained in:
parent
21d8588cc8
commit
b8e061ec27
2 changed files with 13 additions and 5 deletions
|
@ -47,7 +47,13 @@ Foam::scalarSquareMatrix::scalarSquareMatrix
|
|||
{}
|
||||
|
||||
|
||||
Foam::scalarSquareMatrix::scalarSquareMatrix(const scalarSquareMatrix& matrix)
|
||||
// Foam::scalarSquareMatrix::scalarSquareMatrix(const scalarSquareMatrix& matrix)
|
||||
// :
|
||||
// SquareMatrix<scalar>(matrix)
|
||||
// {}
|
||||
|
||||
|
||||
Foam::scalarSquareMatrix::scalarSquareMatrix(const SquareMatrix<scalar>& matrix)
|
||||
:
|
||||
SquareMatrix<scalar>(matrix)
|
||||
{}
|
||||
|
|
|
@ -45,14 +45,13 @@ namespace Foam
|
|||
{
|
||||
|
||||
/*---------------------------------------------------------------------------*\
|
||||
Class scalarSquareMatrix Declaration
|
||||
Class scalarSquareMatrix Declaration
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
class scalarSquareMatrix
|
||||
:
|
||||
public SquareMatrix<scalar>
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
// Constructors
|
||||
|
@ -66,8 +65,11 @@ public:
|
|||
//- Construct given size and coefficient value
|
||||
scalarSquareMatrix(const label, const scalar v);
|
||||
|
||||
//- Construct as copy
|
||||
scalarSquareMatrix(const scalarSquareMatrix&);
|
||||
// //- Construct as copy
|
||||
// scalarSquareMatrix(const scalarSquareMatrix&);
|
||||
|
||||
//- Construct as copy of base
|
||||
scalarSquareMatrix(const SquareMatrix<scalar>&);
|
||||
|
||||
//- Construct from Istream
|
||||
scalarSquareMatrix(Istream&);
|
||||
|
|
Reference in a new issue