mirror of https://github.com/lammps/lammps.git
no need for libm or GSL to compile the interpolate code
This commit is contained in:
parent
d190b76075
commit
0fac0e18d1
|
@ -2,7 +2,7 @@ Interpolate.x tries to perform a cubic polynomial interpolation
|
||||||
of the MEP.
|
of the MEP.
|
||||||
|
|
||||||
Compile the program with:
|
Compile the program with:
|
||||||
gcc interpolate.c -o interpolate.x -lm -lgsl
|
gcc interpolate.c -o interpolate.x
|
||||||
|
|
||||||
and then run it as:
|
and then run it as:
|
||||||
./interpolate.x
|
./interpolate.x
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
------------------------------------------------------------------------- */
|
------------------------------------------------------------------------- */
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <math.h>
|
|
||||||
#include <time.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue