|
From: <kin...@us...> - 2004-02-19 06:55:24
|
Update of /cvsroot/teem/teem/src/ell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16501/ell Modified Files: cubicEll.c Log Message: going crazy: replaced M_E with AIR_E and M_PI with AIR_PI, out of spite for windows Index: cubicEll.c =================================================================== RCS file: /cvsroot/teem/teem/src/ell/cubicEll.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** cubicEll.c 7 Jan 2004 15:34:29 -0000 1.6 --- cubicEll.c 19 Feb 2004 06:45:11 -0000 1.7 *************** *** 59,64 **** t = 2*sqrt(-p); root[0] = t*cos(phi) - sub; ! root[1] = t*cos(phi + 2*M_PI/3.0) - sub; ! root[2] = t*cos(phi - 2*M_PI/3.0) - sub; /* if (!AIR_EXISTS(root[0])) { --- 59,64 ---- t = 2*sqrt(-p); root[0] = t*cos(phi) - sub; ! root[1] = t*cos(phi + 2*AIR_PI/3.0) - sub; ! root[2] = t*cos(phi - 2*AIR_PI/3.0) - sub; /* if (!AIR_EXISTS(root[0])) { |