#ifndef NEWTONCOMPUTATION_H #define NEWTONCOMPUTATION_H NEWTONCOMPUTATION_H #include "Computation.h" class NewtonComputation : public Computation { public: unsigned int compute(double x, double y); }; #endif