Skip to content
Snippets Groups Projects
Commit 631447e5 authored by Jonathan Youett's avatar Jonathan Youett
Browse files

writeBinary moved to dune-matrix-vector

parent 6cf09746
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include <iomanip> #include <iomanip>
#include <fstream> #include <fstream>
#include <dune/solvers/common/genericvectortools.hh> #include <dune/matrix-vector/genericvectortools.hh>
template <class VectorType, class BitVectorType> template <class VectorType, class BitVectorType>
void IterativeSolver<VectorType, BitVectorType>::check() const void IterativeSolver<VectorType, BitVectorType>::check() const
...@@ -33,7 +33,7 @@ void IterativeSolver<VectorType, BitVectorType>::writeIterate(const VectorType& ...@@ -33,7 +33,7 @@ void IterativeSolver<VectorType, BitVectorType>::writeIterate(const VectorType&
if (not(file)) if (not(file))
DUNE_THROW(SolverError, "Couldn't open file " << iSolFilename.str() << " for writing"); DUNE_THROW(SolverError, "Couldn't open file " << iSolFilename.str() << " for writing");
GenericVector::writeBinary(file, iterate); Dune::MatrixVector::Generic::writeBinary(file, iterate);
file.close(); file.close();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment