Skip to content
Snippets Groups Projects
Commit 5cdd5ede authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

workaround for dune-functions problems

parent 9f335218
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,8 @@ int main(int argc, char** argv)
Mu.getVector() = 0.0;
Nu.getVector() = 0.0;
std::srand( time(0) );
Psi.interpol([psi_mean](auto const& x) { return (std::rand()/double(RAND_MAX) - 0.5) + psi_mean; });
// Psi.interpol([psi_mean](auto const& x) { return (std::rand()/double(RAND_MAX) - 0.5) + psi_mean; });
Psi = psi_mean;
// using PreconType = PfcPrecon<typename PfcProblem::SystemMatrixType::MultiMatrix, typename PfcProblem::SystemVectorType::MultiVector>;
// PreconType precon(prob.getSystemMatrix().getMatrix(), &tau, M0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment