June 2017
Intermediate to advanced
532 pages
12h 59m
English
In this section, we take the ASCII Mandelbrot fractal renderer that we implemented in Chapter 6, Advanced Use of STL Algorithms. First, we are going to make the calculation take much more time by incrementing the calculation limit. Then we get some speedup by doing only four little changes to the program in order to parallelize it:
#include <iostream> #include <algorithm> #include <iterator> #include <complex> #include <numeric> ...Read now
Unlock full access