diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2009-04-06 22:29:34 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2009-04-06 22:29:34 +0000 |
| commit | 64e50f15e4a4fb6ffcd2aa3774f1b0dde990e99f (patch) | |
| tree | 0fae7298fc26ec9c39d73f1e9b33207c8bb0d9c2 /src/2geom/poly.cpp | |
| parent | noop: Rename argument from uri to filename for Extension::...::save implement... (diff) | |
| download | inkscape-64e50f15e4a4fb6ffcd2aa3774f1b0dde990e99f.tar.gz inkscape-64e50f15e4a4fb6ffcd2aa3774f1b0dde990e99f.zip | |
update 2geom. big commit as it has been a while. (2geom svn rev. 1870, i think)
i turned some optional compilation stuff *on* per default, to help building inkscape.
(bzr r7638)
Diffstat (limited to 'src/2geom/poly.cpp')
| -rw-r--r-- | src/2geom/poly.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/2geom/poly.cpp b/src/2geom/poly.cpp index 30ec1cdb7..d8b379557 100644 --- a/src/2geom/poly.cpp +++ b/src/2geom/poly.cpp @@ -1,8 +1,9 @@ #include <2geom/poly.h> -//#ifdef HAVE_GSL +#define HAVE_GSL +#ifdef HAVE_GSL #include <gsl/gsl_poly.h> -//#endif +#endif namespace Geom { @@ -38,7 +39,7 @@ void Poly::monicify() { } -//#ifdef HAVE_GSL +#ifdef HAVE_GSL std::vector<std::complex<double> > solve(Poly const & pp) { Poly p(pp); p.normalize(); @@ -75,7 +76,7 @@ std::vector<double > solve_reals(Poly const & p) { } return real_roots; } -//#endif +#endif double polish_root(Poly const & p, double guess, double tol) { Poly dp = derivative(p); |
