NISN< FT > Struct Template Reference

Negative Inverse Sum bound for negative roots. More...

#include <univariate_bounds.hpp>

List of all members.

Static Public Member Functions


Detailed Description

template<class FT>
struct mmx::NISN< FT >

Negative Inverse Sum bound for negative roots.

Definition at line 127 of file univariate_bounds.hpp.


Member Function Documentation

static FT upper_bound ( const POLY &  p  )  [inline, static]

brief Computes the "Negative Inverse Sum" bound for the negative roots

Parameters:
p Univariate polynomials
See also:
bound

Definition at line 137 of file univariate_bounds.hpp.

00138     {
00139       POLY tmp = p;
00140       for ( unsigned i = 1; i < p.size(); i += 2 )
00141         tmp[i] = -tmp[i];
00142       return  -NISP<FT>::upper_bound(tmp);
00143     }


The documentation for this struct was generated from the following file:

Generated on 6 Dec 2012 for realroot by  doxygen 1.6.1