aboutsummaryrefslogtreecommitdiff
path: root/aberth/defs.h
blob: 40eacf03bce7d1cd3cddc20e4e52eb6eae802dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <complex>
#include <array>

using namespace std;


constexpr const int N = 18;

using Com = complex<double>;
using Poly = array<int, N + 1>;
using AApprox = array<Com, N>;