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

Binary data writing has moved to dune-matrix-vector

parent 460f380f
No related branches found
No related tags found
No related merge requests found
......@@ -438,7 +438,7 @@ int main (int argc, char *argv[]) try
xEmbedded[i] = x[i].globalCoordinates();
std::ofstream outFile("cosserat-continuum-result-" + std::to_string(numLevels) + ".data", std::ios_base::binary);
GenericVector::writeBinary(outFile, xEmbedded);
MatrixVector::Generic::writeBinary(outFile, xEmbedded);
outFile.close();
// finally: compute the average deformation of the Neumann boundary
......
......@@ -259,7 +259,7 @@ int main (int argc, char *argv[]) try
// Write the corresponding coefficient vector: verbatim in binary, to be completely lossless
std::ofstream outFile("gradientflow_result_0.data", std::ios_base::binary);
GenericVector::writeBinary(outFile, xEmbedded);
MatrixVector::Generic::writeBinary(outFile, xEmbedded);
outFile.close();
///////////////////////////////////////////////////////
......@@ -299,7 +299,7 @@ int main (int argc, char *argv[]) try
// Write the corresponding coefficient vector: verbatim in binary, to be completely lossless
std::ofstream outFile("gradientflow_result_" + std::to_string(i+1) + ".data", std::ios_base::binary);
GenericVector::writeBinary(outFile, xEmbedded);
MatrixVector::Generic::writeBinary(outFile, xEmbedded);
outFile.close();
}
......
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