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.
|
||||
|
||||
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
|
||||
|
|
|
@ -9,8 +9,6 @@
|
|||
------------------------------------------------------------------------- */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue