From: Wolfgang Bangerth Date: Tue, 22 Apr 2025 21:59:40 +0000 (-0600) Subject: Be explicit about what output to create. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb2de0f3397a5e8e97005660f09abac152ddfdaf;p=dealii.git Be explicit about what output to create. --- diff --git a/tests/lac/matrix_out.cc b/tests/lac/matrix_out.cc index e1c45f6b67..97c228962f 100644 --- a/tests/lac/matrix_out.cc +++ b/tests/lac/matrix_out.cc @@ -57,7 +57,7 @@ main() MatrixOut matrix_out; matrix_out.build_patches(sparse_matrix, "sparse_matrix", - MatrixOut::Options(true)); + MatrixOut::Options(true, 1, false, false)); matrix_out.write_eps(logfile); }; @@ -73,7 +73,7 @@ main() MatrixOut matrix_out; matrix_out.build_patches(full_matrix, "collated_matrix", - MatrixOut::Options(false, 4)); + MatrixOut::Options(false, 4, false, false)); matrix_out.write_gmv(logfile); }; } diff --git a/tests/lac/matrix_out_02.cc b/tests/lac/matrix_out_02.cc index e3ada92d11..91dc3fea33 100644 --- a/tests/lac/matrix_out_02.cc +++ b/tests/lac/matrix_out_02.cc @@ -54,7 +54,7 @@ main(int argc, char **argv) MatrixOut matrix_out; matrix_out.build_patches(sparse_matrix, "sparse_matrix", - MatrixOut::Options(true, 1, true)); + MatrixOut::Options(true, 1, true, false)); matrix_out.write_gnuplot(logfile); } }