summaryrefslogtreecommitdiff
path: root/types.hpp
blob: 05eceb492ea089287b9822f58751fa6fca0b19e3 (plain)
1
2
3
4
5
6
#pragma once
#include <complex>

using Real = double;
using Complex = std::complex<Real>;
using namespace std::complex_literals;