mailr4699 - /1.3/maths_fns/


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

Header


Content

Posted by sebastien . morin . 1 on January 14, 2008 - 05:25:
Author: semor
Date: Mon Jan 14 05:25:19 2008
New Revision: 4699

URL: http://svn.gna.org/viewcvs/relax?rev=4699&view=rev
Log:
Added more comments to the imports.


Modified:
    1.3/maths_fns/chi2.py
    1.3/maths_fns/correlation_time.py
    1.3/maths_fns/direction_cosine.py
    1.3/maths_fns/jw_mapping.py
    1.3/maths_fns/jw_mf.py
    1.3/maths_fns/jw_mf_comps.py
    1.3/maths_fns/mf.py
    1.3/maths_fns/ri.py
    1.3/maths_fns/ri_comps.py
    1.3/maths_fns/weights.py

Modified: 1.3/maths_fns/chi2.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/chi2.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/chi2.py (original)
+++ 1.3/maths_fns/chi2.py Mon Jan 14 05:25:19 2008
@@ -21,6 +21,7 @@
 
###############################################################################
 
 
+# Python module imports.
 from Numeric import Float64, sum, transpose, zeros
 
 

Modified: 1.3/maths_fns/correlation_time.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/correlation_time.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/correlation_time.py (original)
+++ 1.3/maths_fns/correlation_time.py Mon Jan 14 05:25:19 2008
@@ -20,6 +20,7 @@
 #                                                                            
 #
 
###############################################################################
 
+# Python module imports.
 from math import sqrt
 
 

Modified: 1.3/maths_fns/direction_cosine.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/direction_cosine.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/direction_cosine.py (original)
+++ 1.3/maths_fns/direction_cosine.py Mon Jan 14 05:25:19 2008
@@ -20,6 +20,7 @@
 #                                                                            
 #
 
###############################################################################
 
+# Python module imports.
 from Numeric import dot
 from math import cos, sin
 

Modified: 1.3/maths_fns/jw_mapping.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/jw_mapping.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/jw_mapping.py (original)
+++ 1.3/maths_fns/jw_mapping.py Mon Jan 14 05:25:19 2008
@@ -20,9 +20,11 @@
 #                                                                            
 #
 
###############################################################################
 
+# Python module imports.
 from Numeric import Float64, zeros
 from math import pi
 
+# relax module imports.
 from ri_comps import calc_fixed_csa, calc_fixed_dip, comp_csa_const_func, 
comp_dip_const_func
 
 

Modified: 1.3/maths_fns/jw_mf.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/jw_mf.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/jw_mf.py (original)
+++ 1.3/maths_fns/jw_mf.py Mon Jan 14 05:25:19 2008
@@ -20,6 +20,7 @@
 #                                                                            
 #
 
###############################################################################
 
+# Python module imports.
 from Numeric import sum
 
 

Modified: 1.3/maths_fns/jw_mf_comps.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/jw_mf_comps.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/jw_mf_comps.py (original)
+++ 1.3/maths_fns/jw_mf_comps.py Mon Jan 14 05:25:19 2008
@@ -20,7 +20,7 @@
 #                                                                            
 #
 
###############################################################################
 
-
+# Python module imports.
 from Numeric import Float64, zeros
 
 

Modified: 1.3/maths_fns/mf.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/mf.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/mf.py (original)
+++ 1.3/maths_fns/mf.py Mon Jan 14 05:25:19 2008
@@ -21,12 +21,13 @@
 
###############################################################################
 
 
+# Python module imports.
 from Numeric import Float64, matrixmultiply, ones, sum, transpose, zeros
 from math import pi
 import sys
 
+# relax module imports.
 from relax_errors import RelaxError
-
 from direction_cosine import *
 from weights import *
 from correlation_time import *

Modified: 1.3/maths_fns/ri.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/ri.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/ri.py (original)
+++ 1.3/maths_fns/ri.py Mon Jan 14 05:25:19 2008
@@ -21,6 +21,7 @@
 
###############################################################################
 
 
+# relax module imports.
 from ri_comps import r1_comps, dr1_comps, d2r1_comps
 from ri_prime import func_ri_prime
 

Modified: 1.3/maths_fns/ri_comps.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/ri_comps.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/ri_comps.py (original)
+++ 1.3/maths_fns/ri_comps.py Mon Jan 14 05:25:19 2008
@@ -246,6 +246,7 @@
 #            rex_sigma_noe_hess      =  0
 #
 
+# Python module imports.
 from math import pi
 from Numeric import Float64, zeros
 

Modified: 1.3/maths_fns/weights.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/maths_fns/weights.py?rev=4699&r1=4698&r2=4699&view=diff
==============================================================================
--- 1.3/maths_fns/weights.py (original)
+++ 1.3/maths_fns/weights.py Mon Jan 14 05:25:19 2008
@@ -20,6 +20,7 @@
 #                                                                            
 #
 
###############################################################################
 
+# Python module imports.
 from math import sqrt
 from Numeric import outerproduct
 




Related Messages


Powered by MHonArc, Updated Mon Jan 14 05:40:09 2008