From c98f1b9ca4ab0c3f1d36087d7b4d9c17d2190685 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Wed, 10 Jun 2015 15:28:39 +1200 Subject: Fixed broken algo --- algorithms.h | 1 + fractal-gen.c | 1 + 2 files changed, 2 insertions(+) diff --git a/algorithms.h b/algorithms.h index d8d2935..0f72ffd 100644 --- a/algorithms.h +++ b/algorithms.h @@ -3,6 +3,7 @@ void *generate_mandelbrot_section(void *section); void *generate_burning_ship_section(void *section); +void *generate_burning_ship_lattice_section(void *section); void *generate_tricorn_section(void *section); #endif diff --git a/fractal-gen.c b/fractal-gen.c index 10803d9..7fe7b58 100644 --- a/fractal-gen.c +++ b/fractal-gen.c @@ -17,6 +17,7 @@ int main(int argc, char **argv) struct section_generator generators[] = { { "mandelbrot-gen" , &generate_mandelbrot_section }, { "burning-ship-gen" , &generate_burning_ship_section }, + { "burning-ship-lattice-gen" , &generate_burning_ship_lattice_section }, { "tricorn-gen" , &generate_tricorn_section } }; -- cgit v1.1