Skip to content
Snippets Groups Projects
Commit df51d35d authored by Thimo Neubauer's avatar Thimo Neubauer
Browse files

send unconditional output through dinfo

[[Imported from SVN: r1077]]
parent 7d458d6a
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,8 @@
#include <iostream>
#include <assert.h>
#include <dune/common/stdstreams.hh>
namespace Dune {
......@@ -1001,9 +1003,9 @@ namespace Dune {
for (int i=0; i<dim; i++)
h[0][i] = (H[i]-low[i])/((sgrid_ctype)N[0][i]);
std::cout << "level=" << L-1 << " size=(" << N[L-1][0];
for (int i=1; i<dim; i++) std::cout << "," << N[L-1][i];
std::cout << ")" << std::endl;
dinfo << "level=" << L-1 << " size=(" << N[L-1][0];
for (int i=1; i<dim; i++) dinfo << "," << N[L-1][i];
dinfo << ")" << std::endl;
}
template<int dim, int dimworld>
......
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