diff --git a/src/sqrt.h b/src/sqrt.h deleted file mode 100644 index 8119028..0000000 --- a/src/sqrt.h +++ /dev/null @@ -1,24 +0,0 @@ -#pragma once - -#ifndef SQRT -#define SQRT -#include -#include -#include - -#define NEWTON_EQ -#define NEWTON_DERIVATIVE - -typedef struct -{ - static double TOLERANCE; - static double ERROR; - static double RESULT; - static double LATEST_RESULT; - static double RESULT; - static int MAX_ITERATION; - static int ITERATION; - -} NEWTON; - -#endif