Skip to content
Snippets Groups Projects
Commit 59b577fd authored by Oliver Sander's avatar Oliver Sander Committed by sander@PCPOOL.MI.FU-BERLIN.DE
Browse files

implement matrix assembly by simply returning the identity matrix. This...

implement matrix assembly by simply returning the identity matrix.  This should a sort of projected gradient descent.  It is too late at night for me to compute the actual matrix

[[Imported from SVN: r5545]]
parent f8a50321
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,9 @@ public:
void assembleMatrix(const TargetSpace& x,
Dune::FieldMatrix<double,size,size>& matrix) const
{
DUNE_THROW(Dune::NotImplemented, "assembleMatrix");
for (int i=0; i<size; i++)
for (int j=0; j<size; j++)
matrix[i][j] = (i==j);
}
const std::vector<TargetSpace> coefficients_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment