00001 // QMcBeaver 00002 // 00003 // Constructed by 00004 // 00005 // Michael Todd Feldmann 00006 // and 00007 // David Randall "Chip" Kent IV 00008 // 00009 // Copyright 2000-2. All rights reserved. 00010 // 00011 // drkent@users.sourceforge.net mtfeldmann@users.sourceforge.net 00012 00013 #ifndef QMCPolynomial_H 00014 #define QMCPolynomial_H 00015 00016 #include "Polynomial.h" 00017 00022 class QMCPolynomial : public Polynomial 00023 { 00024 00025 public: 00029 QMCPolynomial(); 00030 00036 QMCPolynomial(Array1D<double> & coeffs); 00037 00038 00039 00048 bool hasNonNegativeZeroes(); 00049 }; 00050 00051 #endif