26 #include <boost/current_function.hpp>
38 static constexpr
char CHARSET[] =
".,c8M@jawrpogOQEPGJ";
48 const int height = 44;
49 const int num_pixels = width * height;
52 const complex span(2.7, -(4 / 3.0) * 2.7 * height / width);
53 const complex begin = center - span / 2.0;
54 const int maxiter = 100000;
56 #pragma omp parallel for ordered schedule(dynamic)
57 for (
int pix = 0; pix < num_pixels; ++pix) {
59 const int x = pix % width;
60 const int y = pix / width;
82 log.info() <<
"done with test program! ";
93 for (; n < maxiter; ++n) {
94 if (std::abs(z) >= 2.0) {