Skip to content
Snippets Groups Projects
Commit 292b903e authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Remove code for difference printing

parent a23bfec1
No related branches found
No related tags found
No related merge requests found
......@@ -625,22 +625,6 @@ int main(int argc, char *argv[]) {
for (auto &x : transferOperators)
delete x;
if (parset.get<bool>("printDifference")) {
VectorType diff2 = u2;
diff2 -= u1;
std::cout << "sup |u1 - u2| = " << diff2.infinity_norm() << ", "
<< "|u1 - u2| = " << diff2.two_norm() << std::endl;
VectorType diff3 = u3;
diff3 -= u1;
std::cout << "sup |u1 - u3| = " << diff3.infinity_norm() << ", "
<< "|u1 - u3| = " << diff3.two_norm() << std::endl;
VectorType diff4 = u4;
diff4 -= u1;
std::cout << "sup |u1 - u4| = " << diff4.infinity_norm() << ", "
<< "|u1 - u4| = " << diff4.two_norm() << std::endl;
}
octave_writer.close();
if (parset.get<bool>("printFrictionalBoundary")) {
......
......@@ -5,7 +5,6 @@ verbose = false
printEvolution = true
printFrictionalBoundary = false
printProgress = false
printDifference = false
writeVTK = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment