Skip to content
Snippets Groups Projects
Commit 0a52da7f authored by Oliver Sander's avatar Oliver Sander
Browse files

Deprecated operator K is gone

[[Imported from SVN: r1291]]
parent b0697729
Branches
Tags
No related merge requests found
......@@ -975,14 +975,14 @@ namespace Dune {
//! calculates the determinant of this matrix
K determinant () const;
//! left multiplication
//! Multiplies M from the left to this matrix
FieldMatrix& leftmultiply (const FieldMatrix<K,n,n>& M)
{
fm_leftmultiply(M,*this);
return *this;
}
//! left multiplication
//! Multiplies M from the right to this matrix
FieldMatrix& rightmultiply (const FieldMatrix<K,n,n>& M)
{
fm_rightmultiply(M,*this);
......@@ -1042,9 +1042,6 @@ namespace Dune {
//===== conversion operator
/** \brief Returns the entry [0][0] */
operator K () const DUNE_DEPRECATED {return p[0][0];}
/** \brief Sends the matrix to an output stream */
void print (std::ostream& s) const
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment