initial commit

This commit is contained in:
2022-07-04 19:22:36 +02:00
commit e16cfcd0c5
8 changed files with 334 additions and 0 deletions

14
mandelbrot.h Normal file
View File

@ -0,0 +1,14 @@
#pragma once
#include <mpfr.h>
#include <cmath>
#include "utils.h"
using namespace Util;
namespace Mandelbrot
{
uint32_t mandelbrot(const BigFloat &c, Vec2bf &ret);
}