15 lines
172 B
C++
15 lines
172 B
C++
#pragma once
|
|
|
|
#include <mpfr.h>
|
|
#include <cmath>
|
|
#include "utils.h"
|
|
|
|
using namespace Util;
|
|
|
|
namespace Mandelbrot
|
|
{
|
|
|
|
uint32_t mandelbrot(const BigFloat &c, Vec2bf &ret);
|
|
|
|
}
|