Unverified Commit 0fac0e18 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

no need for libm or GSL to compile the interpolate code

parent d190b760
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ Interpolate.x tries to perform a cubic polynomial interpolation
of the MEP.  

Compile the program with:
gcc interpolate.c -o interpolate.x -lm -lgsl
gcc interpolate.c -o interpolate.x

and then run it as:
./interpolate.x
+0 −2
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@
------------------------------------------------------------------------- */

#include <stdio.h>
#include <math.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>