Revision: | 93 |
Committed: | Sat Jan 17 23:24:55 2009 UTC (13 years, 5 months ago) by wdelano | File size: | 255 byte(s) |
Log Message: | branch created |
Line | File contents |
---|---|
1 | |
2 | /* EXTERN struct t_hess { |
3 | double hessx[MAXATOM][3], hessy[MAXATOM][3], hessz[MAXATOM][3]; |
4 | } hess; */ |
5 | |
6 | EXTERN struct t_hess { |
7 | float **hessx, **hessy, **hessz; |
8 | } hess; |
9 | |
10 | void hessian(int, double *,int *, int *, int *,double *); |
11 |