From: Wolfgang Bangerth Date: Thu, 22 Feb 2018 23:12:06 +0000 (-0700) Subject: Simplify some code. X-Git-Tag: v9.0.0-rc1~391^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b95c954d1373bcd40d0918af6efc8f9c7cda730;p=dealii.git Simplify some code. Let's not show bad practices. And let's not use bad examples as an excuse to introduce an Assert. step-5 already does this before. --- diff --git a/examples/step-6/step-6.cc b/examples/step-6/step-6.cc index f7190c4d99..eeb1a7ec67 100644 --- a/examples/step-6/step-6.cc +++ b/examples/step-6/step-6.cc @@ -569,31 +569,12 @@ void Step6::refine_grid () // We have already seen in step-1 how this can be achieved. The only thing we // have to change is the generation of the file name, since it should contain // the number of the present refinement cycle provided to this function as an -// argument. The most general way is to use the std::stringstream class as -// shown in step-5, but here's a little hack that makes it simpler if we know -// that we have less than 10 iterations: assume that the %numbers `0' through -// `9' are represented consecutively in the character set used on your machine -// (this is in fact the case in all known character sets), then '0'+cycle -// gives the character corresponding to the present cycle number. Of course, -// this will only work if the number of cycles is actually less than 10, and -// rather than waiting for the disaster to happen, we safeguard our little -// hack with an explicit assertion at the beginning of the function. If this -// assertion is triggered, i.e. when cycle is larger than or -// equal to 10, an exception of type ExcNotImplemented is raised, -// indicating that some functionality is not implemented for this case -- the -// functionality that is missing, of course, is the generation of file names -// for that case. (A longer discussion of what exactly the @p Assert macro -// does can be found in the @ref Exceptions "exception documentation module".) +// argument. To this end, we simply append the number of the refinement cycle +// as a string to the file name. template void Step6::output_results (const unsigned int cycle) const { - Assert (cycle < 10, ExcNotImplemented()); - - std::string filename = "grid-"; - filename += ('0' + cycle); - filename += ".eps"; - - std::ofstream output (filename.c_str()); + std::ofstream output ("grid-" + std::to_string(cycle) + ".eps"); GridOut grid_out; grid_out.write_eps (triangulation, output);