mailr26437 - /branches/frame_order_cleanup/lib/frame_order/pseudo_ellipse.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on November 07, 2014 - 10:11:
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):




Related Messages


Powered by MHonArc, Updated Fri Nov 07 10:40:02 2014