RectangularMatrix: Removed the identity function (now in SquareMatrix)

This commit is contained in:
Henry Weller
2016-03-25 22:35:03 +00:00
parent e3f3c03ca8
commit 04dcee7680
3 changed files with 2 additions and 23 deletions

View File

@ -40,7 +40,6 @@ SourceFiles
#include "Matrix.H"
#include "SquareMatrix.H"
#include "Identity.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -79,10 +78,6 @@ public:
// initializing all elements to zero
inline RectangularMatrix(const label m, const label n, const zero);
//- Construct given number of rows/columns
// Initializing to the identity matrix
inline RectangularMatrix(const label n, const Identity<Type>);
//- Construct with given number of rows and columns
// and value for all elements.
inline RectangularMatrix(const label m, const label n, const Type&);