blob: f82caf394961e26ee47f5d52575a66e5df829da8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "poly.h"
#include <complex>
std::vector<std::complex<double> >
DK(Poly const & ply, const double tol=1e-10);
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|