From ec21435a5c7467529836053acd291788974210c5 Mon Sep 17 00:00:00 2001 From: Kirill Terekhov Date: Mon, 19 Jan 2015 11:55:51 -0800 Subject: [PATCH] Tests: solver_test000: don't write files Should not pollute directory with files without need --- tests/solver_test000/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/solver_test000/main.cpp b/tests/solver_test000/main.cpp index 9974112..b6ff4c5 100644 --- a/tests/solver_test000/main.cpp +++ b/tests/solver_test000/main.cpp @@ -104,10 +104,10 @@ int main(int argc,char ** argv) return -1; #endif } - - x.Save("output.rhs"); - b.Save("b.rhs"); - A.Save("A.mtx"); + //no pollution with files + //x.Save("output.rhs"); + //b.Save("b.rhs"); + //A.Save("A.mtx"); } Solver::Finalize(); // Finalize solver and close MPI activity -- 2.26.2