blob: 1f0ab83d40b5912ca6105c4eec3ea1ad7822f4f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <complex>
#include <array>
using namespace std;
constexpr const int N = 18; // e.g. for Derbyshire
// constexpr const int N = 5; // e.g. for Christensen
using Com = complex<double>;
|