Page MenuHomec4science

compute_pi.hh
No OneTemporary

File Metadata

Created
Sat, May 18, 01:02

compute_pi.hh

#ifndef COMPUTE_PI_HH
#define COMPUTE_PI_HH
#include "series.hh"
class compute_pi: public Series
{
public:
// Constructor - Destructor
compute_pi();
~compute_pi();
// Functions
double compute(unsigned int N);
double getAnalyticPrediction();
};
#endif

Event Timeline