Author: bugman
Date: Fri Nov  7 10:11:47 2014
New Revision: 26437

URL: http://svn.gna.org/viewcvs/relax?rev=26437&view=rev
Log:
Integer to float conversions in part_int_daeg2_pseudo_ellipse_13().

This avoid integer to float conversion during execution, saving a little time 
for the pseudo-ellipse
2nd degree frame order matrix compilation.


Modified:
    branches/frame_order_cleanup/lib/frame_order/pseudo_ellipse.py

Modified: branches/frame_order_cleanup/lib/frame_order/pseudo_ellipse.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/frame_order_cleanup/lib/frame_order/pseudo_ellipse.py?rev=26437&r1=26436&r2=26437&view=diff
==============================================================================
--- branches/frame_order_cleanup/lib/frame_order/pseudo_ellipse.py      
(original)
+++ branches/frame_order_cleanup/lib/frame_order/pseudo_ellipse.py      Fri Nov 
 7 10:11:47 2014
@@ -342,7 +342,7 @@
     cos_sin_phi2 = cos(phi)**2*sin(phi)**2
 
     # The theta-sigma integral.
-    return sinc_2smax * (sin_tmax2 * (4*cos_sin_phi2*cos_tmax - 
12*cos_sin_phi2 + 3) - 16*cos_sin_phi2*cos_tmax) - 3.0*sin_tmax2
+    return sinc_2smax * (sin_tmax2 * (4.0*cos_sin_phi2*cos_tmax - 
12.0*cos_sin_phi2 + 3) - 16.0*cos_sin_phi2*cos_tmax) - 3.0*sin_tmax2
 
 
 def part_int_daeg2_pseudo_ellipse_22(phi, x, y, smax):


_______________________________________________
relax (http://www.nmr-relax.com)

This is the relax-commits mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-commits

Reply via email to