Changeset 1900
- Timestamp:
- 03/14/07 06:45:45 (2 years ago)
- Files:
-
- trunk/tango/math/Bessel.d (modified) (1 diff)
- trunk/tango/math/ErrorFunction.d (modified) (1 diff)
- trunk/tango/math/GammaFunction.d (modified) (1 diff)
- trunk/tango/math/Math.d (moved) (moved from trunk/tango/math/Core.d) (3 diffs)
- trunk/tango/math/Probability.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/math/Bessel.d
r1889 r1900 10 10 module tango.math.Bessel; 11 11 12 import tango.math. Core;12 import tango.math.Math; 13 13 private import tango.math.IEEE; 14 14 trunk/tango/math/ErrorFunction.d
r1889 r1900 25 25 module tango.math.ErrorFunction; 26 26 27 import tango.math. Core;27 import tango.math.Math; 28 28 import tango.math.IEEE; // only required for unit tests 29 29 trunk/tango/math/GammaFunction.d
r1889 r1900 21 21 */ 22 22 module tango.math.GammaFunction; 23 private import tango.math. Core;23 private import tango.math.Math; 24 24 private import tango.math.IEEE; 25 25 private import tango.math.ErrorFunction; trunk/tango/math/Math.d
r1889 r1900 60 60 */ 61 61 62 module tango.math. Core;62 module tango.math.Math; 63 63 64 64 static import tango.stdc.math; … … 1821 1821 assert(r==RoundingMode.ROUNDTONEAREST); 1822 1822 real b = 5.5; 1823 int cnear = tango.math. Core.rndint(b);1823 int cnear = tango.math.Math.rndint(b); 1824 1824 assert(cnear == 6); 1825 1825 auto oldrounding = setIeeeRounding(RoundingMode.ROUNDDOWN); … … 1828 1828 assert(getIeeeRounding==RoundingMode.ROUNDDOWN); 1829 1829 1830 int cdown = tango.math. Core.rndint(b);1830 int cdown = tango.math.Math.rndint(b); 1831 1831 assert(cdown==5); 1832 1832 } trunk/tango/math/Probability.d
r1590 r1900 28 28 static import tango.math.ErrorFunction; 29 29 private import tango.math.GammaFunction; 30 private import tango.math. Core;30 private import tango.math.Math; 31 31 private import tango.math.IEEE; 32 32












