Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 1900

Show
Ignore:
Timestamp:
03/14/07 06:45:45 (2 years ago)
Author:
Don Clugston
Message:

Changed math.Core to math.Math.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/math/Bessel.d

    r1889 r1900  
    1010module tango.math.Bessel; 
    1111 
    12 import tango.math.Core
     12import tango.math.Math
    1313private import tango.math.IEEE; 
    1414 
  • trunk/tango/math/ErrorFunction.d

    r1889 r1900  
    2525module tango.math.ErrorFunction; 
    2626 
    27 import tango.math.Core
     27import tango.math.Math
    2828import tango.math.IEEE;  // only required for unit tests 
    2929 
  • trunk/tango/math/GammaFunction.d

    r1889 r1900  
    2121 */ 
    2222module tango.math.GammaFunction; 
    23 private import tango.math.Core
     23private import tango.math.Math
    2424private import tango.math.IEEE; 
    2525private import tango.math.ErrorFunction; 
  • trunk/tango/math/Math.d

    r1889 r1900  
    6060 */ 
    6161 
    62 module tango.math.Core
     62module tango.math.Math
    6363 
    6464static import tango.stdc.math; 
     
    18211821    assert(r==RoundingMode.ROUNDTONEAREST); 
    18221822    real b = 5.5; 
    1823     int cnear = tango.math.Core.rndint(b); 
     1823    int cnear = tango.math.Math.rndint(b); 
    18241824    assert(cnear == 6); 
    18251825    auto oldrounding = setIeeeRounding(RoundingMode.ROUNDDOWN); 
     
    18281828    assert(getIeeeRounding==RoundingMode.ROUNDDOWN); 
    18291829 
    1830     int cdown = tango.math.Core.rndint(b); 
     1830    int cdown = tango.math.Math.rndint(b); 
    18311831    assert(cdown==5); 
    18321832} 
  • trunk/tango/math/Probability.d

    r1590 r1900  
    2828static import tango.math.ErrorFunction; 
    2929private import tango.math.GammaFunction; 
    30 private import tango.math.Core
     30private import tango.math.Math
    3131private import tango.math.IEEE; 
    3232