Skip to content

Commit

Permalink
Syntax default init
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Sep 14, 2024
1 parent c7cdf9f commit ed87be1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions mandelbrot/mandelbrot_generator_perturbative.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@
i_col < x_coord.size(); // NOLINT(altera-id-dependent-backward-branch)
++i_col)
{
my_iteration_numeric_type er { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type ei { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type quad_length { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type zer { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type zei { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type zkr_temp { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type zki_temp { static_cast<unsigned>(UINT8_C(0)) };
my_iteration_numeric_type er { };
my_iteration_numeric_type ei { };
my_iteration_numeric_type quad_length { };
my_iteration_numeric_type zer { };
my_iteration_numeric_type zei { };
my_iteration_numeric_type zkr_temp { };
my_iteration_numeric_type zki_temp { };

// Use an optimized complex-numbered multiplication scheme.
// Thereby reduce the main work of the Mandelbrot iteration to
Expand Down

0 comments on commit ed87be1

Please sign in to comment.