poly-laguerre-solve.h revision 1f37e9d97c3bb8cf02b2cc80af8dcfc9aba7c7b4
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#ifndef LIB2GEOM_SEEN_POLY_LAGUERRE_SOLVE_H
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#define LIB2GEOM_SEEN_POLY_LAGUERRE_SOLVE_H
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#include <2geom/poly.h>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#include <complex>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Fortenamespace Geom {
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Fortestd::vector<std::complex<double> >
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Fortelaguerre(Poly ply, const double tol=1e-10);
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Fortestd::vector<double>
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Fortelaguerre_real_interval(Poly ply,
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte const double lo, const double hi,
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte const double tol=1e-10);
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte} // namespace Geom
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte#endif // LIB2GEOM_SEEN_POLY_LAGUERRE_SOLVE_H
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte/*
3fb517f786391b507780c78aabb8d98bfea9efe9James Moore Local Variables:
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte mode:c++
6ac72a9ce9da39bd0abf3111fb48494c6d892613Alexander Stetsenko c-file-style:"stroustrup"
042f029e72a2d7a92c989ad0d0570f7b21efa2aaAlexander Stetsenko c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
a49dc89305dba244dc67270b5afddcf7da3e36cfSaso Kiselkov indent-tabs-mode:nil
a49dc89305dba244dc67270b5afddcf7da3e36cfSaso Kiselkov fill-column:99
6ac72a9ce9da39bd0abf3111fb48494c6d892613Alexander Stetsenko End:
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte*/
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
fcf3ce441efd61da9bb2884968af01cb7c1452ccJohn Forte