2012-02-12 01:49:13 -06:00
|
|
|
#[doc = "Operations and constants for `float`"];
|
2012-02-12 01:18:26 -06:00
|
|
|
|
2012-03-15 20:45:22 -05:00
|
|
|
// Even though this module exports everything defined in it,
|
|
|
|
// because it contains re-exports, we also have to explicitly
|
|
|
|
// export locally defined things. That's a bit annoying.
|
2012-01-05 10:11:34 -06:00
|
|
|
export to_str_common, to_str_exact, to_str, from_str;
|
2012-06-25 15:41:13 -05:00
|
|
|
export add, sub, mul, div, rem, lt, le, gt, eq, ne;
|
2012-01-05 07:46:14 -06:00
|
|
|
export is_positive, is_negative, is_nonpositive, is_nonnegative;
|
|
|
|
export is_zero, is_infinite, is_finite;
|
|
|
|
export NaN, is_NaN, infinity, neg_infinity;
|
2011-12-13 19:52:02 -06:00
|
|
|
export consts;
|
2012-01-05 07:46:14 -06:00
|
|
|
export logarithm;
|
2012-02-08 00:02:55 -06:00
|
|
|
export acos, asin, atan, atan2, cbrt, ceil, copysign, cos, cosh, floor;
|
2012-01-05 07:46:14 -06:00
|
|
|
export erf, erfc, exp, expm1, exp2, abs, abs_sub;
|
|
|
|
export mul_add, fmax, fmin, nextafter, frexp, hypot, ldexp;
|
|
|
|
export lgamma, ln, log_radix, ln1p, log10, log2, ilog_radix;
|
|
|
|
export modf, pow, round, sin, sinh, sqrt, tan, tanh, tgamma, trunc;
|
2012-01-05 10:11:34 -06:00
|
|
|
export signbit;
|
2012-02-24 02:07:05 -06:00
|
|
|
export pow_with_uint;
|
2012-06-25 15:41:13 -05:00
|
|
|
|
|
|
|
export num;
|
2012-01-05 07:46:14 -06:00
|
|
|
|
|
|
|
// export when m_float == c_double
|
|
|
|
|
|
|
|
export j0, j1, jn, y0, y1, yn;
|
|
|
|
|
2011-12-27 19:20:14 -06:00
|
|
|
// PORT this must match in width according to architecture
|
2011-12-22 08:19:43 -06:00
|
|
|
|
2011-12-13 19:52:02 -06:00
|
|
|
import m_float = f64;
|
2012-06-25 15:41:13 -05:00
|
|
|
|
|
|
|
import f64::{add, sub, mul, div, rem, lt, le, gt, eq, ne};
|
|
|
|
import f64::logarithm;
|
|
|
|
import f64::{acos, asin, atan2, cbrt, ceil, copysign, cosh, floor};
|
|
|
|
import f64::{erf, erfc, exp, expm1, exp2, abs_sub};
|
|
|
|
import f64::{mul_add, fmax, fmin, nextafter, frexp, hypot, ldexp};
|
|
|
|
import f64::{lgamma, ln, log_radix, ln1p, log10, log2, ilog_radix};
|
|
|
|
import f64::{modf, pow, round, sinh, tanh, tgamma, trunc};
|
|
|
|
import f64::signbit;
|
|
|
|
import f64::{j0, j1, jn, y0, y1, yn};
|
2011-12-22 19:31:24 -06:00
|
|
|
|
2012-06-04 19:26:17 -05:00
|
|
|
const NaN: float = 0.0/0.0;
|
|
|
|
|
|
|
|
const infinity: float = 1.0/0.0;
|
|
|
|
|
|
|
|
const neg_infinity: float = -1.0/0.0;
|
|
|
|
|
|
|
|
/* Module: consts */
|
|
|
|
mod consts {
|
|
|
|
|
2012-06-21 18:44:10 -05:00
|
|
|
// FIXME (requires Issue #1433 to fix): replace with mathematical
|
|
|
|
// constants from cmath.
|
2012-06-04 19:26:17 -05:00
|
|
|
#[doc = "Archimedes' constant"]
|
|
|
|
const pi: float = 3.14159265358979323846264338327950288;
|
|
|
|
|
|
|
|
#[doc = "pi/2.0"]
|
|
|
|
const frac_pi_2: float = 1.57079632679489661923132169163975144;
|
|
|
|
|
|
|
|
#[doc = "pi/4.0"]
|
|
|
|
const frac_pi_4: float = 0.785398163397448309615660845819875721;
|
|
|
|
|
|
|
|
#[doc = "1.0/pi"]
|
|
|
|
const frac_1_pi: float = 0.318309886183790671537767526745028724;
|
|
|
|
|
|
|
|
#[doc = "2.0/pi"]
|
|
|
|
const frac_2_pi: float = 0.636619772367581343075535053490057448;
|
|
|
|
|
|
|
|
#[doc = "2.0/sqrt(pi)"]
|
|
|
|
const frac_2_sqrtpi: float = 1.12837916709551257389615890312154517;
|
|
|
|
|
|
|
|
#[doc = "sqrt(2.0)"]
|
|
|
|
const sqrt2: float = 1.41421356237309504880168872420969808;
|
|
|
|
|
|
|
|
#[doc = "1.0/sqrt(2.0)"]
|
|
|
|
const frac_1_sqrt2: float = 0.707106781186547524400844362104849039;
|
|
|
|
|
|
|
|
#[doc = "Euler's number"]
|
|
|
|
const e: float = 2.71828182845904523536028747135266250;
|
|
|
|
|
|
|
|
#[doc = "log2(e)"]
|
|
|
|
const log2_e: float = 1.44269504088896340735992468100189214;
|
|
|
|
|
|
|
|
#[doc = "log10(e)"]
|
|
|
|
const log10_e: float = 0.434294481903251827651128918916605082;
|
|
|
|
|
|
|
|
#[doc = "ln(2.0)"]
|
|
|
|
const ln_2: float = 0.693147180559945309417232121458176568;
|
|
|
|
|
|
|
|
#[doc = "ln(10.0)"]
|
|
|
|
const ln_10: float = 2.30258509299404568401799145468436421;
|
|
|
|
}
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
/**
|
|
|
|
* Section: String Conversions
|
|
|
|
*/
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
2011-12-13 18:25:51 -06:00
|
|
|
Converts a float to a string
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
# Arguments
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
* num - The float value
|
|
|
|
* digits - The number of significant digits
|
|
|
|
* exact - Whether to enforce the exact number of significant digits
|
|
|
|
"]
|
2011-12-13 18:25:51 -06:00
|
|
|
fn to_str_common(num: float, digits: uint, exact: bool) -> str {
|
2012-01-05 07:46:14 -06:00
|
|
|
if is_NaN(num) { ret "NaN"; }
|
2012-04-08 12:33:36 -05:00
|
|
|
if num == infinity { ret "inf"; }
|
|
|
|
if num == neg_infinity { ret "-inf"; }
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
|
|
|
|
let mut (num, sign) = if num < 0.0 { (-num, "-") } else { (num, "") };
|
|
|
|
|
|
|
|
// truncated integer
|
2011-12-13 18:25:51 -06:00
|
|
|
let trunc = num as uint;
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
|
|
|
|
// decimal remainder
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut frac = num - (trunc as float);
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
|
|
|
|
// stack of digits
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut fractionalParts = ~[];
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
|
2012-06-14 18:30:18 -05:00
|
|
|
// FIXME: (#2608)
|
2012-06-29 18:26:56 -05:00
|
|
|
// This used to return right away without rounding, as "~[-]num",
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
// but given epsilon like in f64.rs, I don't see how the comparison
|
|
|
|
// to epsilon did much when only used there.
|
|
|
|
// if (frac < epsilon && !exact) || digits == 0u { ret accum; }
|
|
|
|
//
|
|
|
|
// With something better, possibly weird results like this can be avoided:
|
|
|
|
// assert "3.14158999999999988262" == my_to_str_exact(3.14159, 20u);
|
|
|
|
|
|
|
|
let mut ii = digits;
|
|
|
|
let mut epsilon_prime = 1.0 / pow_with_uint(10u, ii);
|
|
|
|
|
|
|
|
// while we still need digits
|
|
|
|
// build stack of digits
|
|
|
|
while ii > 0u && (frac >= epsilon_prime || exact) {
|
|
|
|
// store the next digit
|
2011-12-13 18:25:51 -06:00
|
|
|
frac *= 10.0;
|
|
|
|
let digit = frac as uint;
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
vec::push(fractionalParts, digit);
|
|
|
|
|
|
|
|
// calculate the next frac
|
2011-12-13 18:25:51 -06:00
|
|
|
frac -= digit as float;
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
epsilon_prime *= 10.0;
|
|
|
|
ii -= 1u;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut acc;
|
|
|
|
let mut racc = "";
|
|
|
|
let mut carry = if frac * 10.0 as uint >= 5u { 1u } else { 0u };
|
|
|
|
|
|
|
|
// turn digits into string
|
|
|
|
// using stack of digits
|
|
|
|
while vec::len(fractionalParts) > 0u {
|
|
|
|
let mut adjusted_digit = carry + vec::pop(fractionalParts);
|
|
|
|
|
|
|
|
if adjusted_digit == 10u {
|
|
|
|
carry = 1u;
|
|
|
|
adjusted_digit %= 10u
|
|
|
|
} else {
|
|
|
|
carry = 0u
|
|
|
|
};
|
|
|
|
|
|
|
|
racc = uint::str(adjusted_digit) + racc;
|
|
|
|
}
|
|
|
|
|
|
|
|
// pad decimals with trailing zeroes
|
|
|
|
while str::len(racc) < digits && exact {
|
|
|
|
racc += "0"
|
|
|
|
}
|
|
|
|
|
|
|
|
// combine ints and decimals
|
|
|
|
let mut ones = uint::str(trunc + carry);
|
|
|
|
if racc == "" {
|
|
|
|
acc = sign + ones;
|
|
|
|
} else {
|
|
|
|
acc = sign + ones + "." + racc;
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
(float) fix some rounding errors when showing as str
This seems to fix issue #1876, and some of the superficial parts of
issue #1375. The #fmt macro and the to_str functions will round,
rather than truncate, floats as strings.
Other issues remain, and I wrote more code here than intended, but the
following should pass now.
```
fn x() {
assert "3.1416" == #fmt["%.4f", 3.14159];
assert "3" == #fmt["%.0f", 3.14159];
assert "99" == #fmt["%.0f", 98.5];
assert "7.0000" == #fmt["%.4f", 6.999999999];
assert "3.141590000" == #fmt["%.9f", 3.14159];
}
```
2012-06-02 02:15:29 -05:00
|
|
|
ret acc;
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
|
|
|
Converts a float to a string with exactly the number of
|
|
|
|
provided significant digits
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
# Arguments
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
* num - The float value
|
|
|
|
* digits - The number of significant digits
|
|
|
|
"]
|
2011-12-13 18:25:51 -06:00
|
|
|
fn to_str_exact(num: float, digits: uint) -> str {
|
|
|
|
to_str_common(num, digits, true)
|
|
|
|
}
|
|
|
|
|
2012-02-21 16:25:31 -06:00
|
|
|
#[test]
|
|
|
|
fn test_to_str_exact_do_decimal() {
|
|
|
|
let s = to_str_exact(5.0, 4u);
|
|
|
|
assert s == "5.0000";
|
|
|
|
}
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
|
|
|
Converts a float to a string with a maximum number of
|
|
|
|
significant digits
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
# Arguments
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
* num - The float value
|
|
|
|
* digits - The number of significant digits
|
|
|
|
"]
|
2011-12-13 18:25:51 -06:00
|
|
|
fn to_str(num: float, digits: uint) -> str {
|
|
|
|
to_str_common(num, digits, false)
|
|
|
|
}
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
2011-12-13 18:25:51 -06:00
|
|
|
Convert a string to a float
|
|
|
|
|
|
|
|
This function accepts strings such as
|
2012-03-06 21:09:32 -06:00
|
|
|
|
|
|
|
* '3.14'
|
|
|
|
* '+3.14', equivalent to '3.14'
|
|
|
|
* '-3.14'
|
|
|
|
* '2.5E10', or equivalently, '2.5e10'
|
|
|
|
* '2.5E-10'
|
|
|
|
* '', or, equivalently, '.' (understood as 0)
|
|
|
|
* '5.'
|
|
|
|
* '.5', or, equivalently, '0.5'
|
2012-04-14 13:21:57 -05:00
|
|
|
* 'inf', '-inf', 'NaN'
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
|
|
Leading and trailing whitespace are ignored.
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
# Arguments
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
* num - A string
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
# Return value
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
`none` if the string did not represent a valid number. Otherwise, `some(n)`
|
2012-06-25 22:00:46 -05:00
|
|
|
where `n` is the floating-point number represented by `[num]/~`.
|
2012-03-06 21:09:32 -06:00
|
|
|
"]
|
2012-02-22 06:18:15 -06:00
|
|
|
fn from_str(num: str) -> option<float> {
|
2012-04-14 13:21:57 -05:00
|
|
|
if num == "inf" {
|
2012-06-04 19:26:17 -05:00
|
|
|
ret some(infinity as float);
|
2012-04-14 13:21:57 -05:00
|
|
|
} else if num == "-inf" {
|
2012-06-04 19:26:17 -05:00
|
|
|
ret some(neg_infinity as float);
|
2012-04-14 13:21:57 -05:00
|
|
|
} else if num == "NaN" {
|
2012-06-04 19:26:17 -05:00
|
|
|
ret some(NaN as float);
|
2012-04-14 13:21:57 -05:00
|
|
|
}
|
|
|
|
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut pos = 0u; //Current byte position in the string.
|
|
|
|
//Used to walk the string in O(n).
|
|
|
|
let len = str::len(num); //Length of the string, in bytes.
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-02-22 06:18:15 -06:00
|
|
|
if len == 0u { ret none; }
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut total = 0f; //Accumulated result
|
|
|
|
let mut c = 'z'; //Latest char.
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
|
|
//The string must start with one of the following characters.
|
|
|
|
alt str::char_at(num, 0u) {
|
|
|
|
'-' | '+' | '0' to '9' | '.' {}
|
2012-02-22 06:18:15 -06:00
|
|
|
_ { ret none; }
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
//Determine if first char is '-'/'+'. Set ~[pos] and ~[neg] accordingly.
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut neg = false; //Sign of the result
|
2011-12-13 18:25:51 -06:00
|
|
|
alt str::char_at(num, 0u) {
|
|
|
|
'-' {
|
|
|
|
neg = true;
|
|
|
|
pos = 1u;
|
|
|
|
}
|
|
|
|
'+' {
|
|
|
|
pos = 1u;
|
|
|
|
}
|
|
|
|
_ {}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Examine the following chars until '.', 'e', 'E'
|
|
|
|
while(pos < len) {
|
|
|
|
let char_range = str::char_range_at(num, pos);
|
|
|
|
c = char_range.ch;
|
|
|
|
pos = char_range.next;
|
|
|
|
alt c {
|
|
|
|
'0' to '9' {
|
|
|
|
total = total * 10f;
|
|
|
|
total += ((c as int) - ('0' as int)) as float;
|
|
|
|
}
|
|
|
|
'.' | 'e' | 'E' {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ {
|
2012-02-22 06:18:15 -06:00
|
|
|
ret none;
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if c == '.' {//Examine decimal part
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut decimal = 1f;
|
2011-12-13 18:25:51 -06:00
|
|
|
while(pos < len) {
|
|
|
|
let char_range = str::char_range_at(num, pos);
|
|
|
|
c = char_range.ch;
|
|
|
|
pos = char_range.next;
|
|
|
|
alt c {
|
|
|
|
'0' | '1' | '2' | '3' | '4' | '5' | '6'| '7' | '8' | '9' {
|
2011-12-16 03:11:00 -06:00
|
|
|
decimal /= 10f;
|
2011-12-13 18:25:51 -06:00
|
|
|
total += (((c as int) - ('0' as int)) as float)*decimal;
|
|
|
|
}
|
|
|
|
'e' | 'E' {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ {
|
2012-02-22 06:18:15 -06:00
|
|
|
ret none;
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == 'e') | (c == 'E') {//Examine exponent
|
2012-03-06 22:48:40 -06:00
|
|
|
let mut exponent = 0u;
|
|
|
|
let mut neg_exponent = false;
|
2011-12-13 18:25:51 -06:00
|
|
|
if(pos < len) {
|
|
|
|
let char_range = str::char_range_at(num, pos);
|
|
|
|
c = char_range.ch;
|
|
|
|
alt c {
|
|
|
|
'+' {
|
|
|
|
pos = char_range.next;
|
|
|
|
}
|
|
|
|
'-' {
|
|
|
|
pos = char_range.next;
|
|
|
|
neg_exponent = true;
|
|
|
|
}
|
|
|
|
_ {}
|
|
|
|
}
|
|
|
|
while(pos < len) {
|
|
|
|
let char_range = str::char_range_at(num, pos);
|
|
|
|
c = char_range.ch;
|
|
|
|
alt c {
|
|
|
|
'0' | '1' | '2' | '3' | '4' | '5' | '6'| '7' | '8' | '9' {
|
|
|
|
exponent *= 10u;
|
|
|
|
exponent += ((c as uint) - ('0' as uint));
|
|
|
|
}
|
|
|
|
_ {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pos = char_range.next;
|
|
|
|
}
|
2012-02-24 02:07:05 -06:00
|
|
|
let multiplier = pow_with_uint(10u, exponent);
|
2012-06-29 18:26:56 -05:00
|
|
|
//Note: not ~[int::pow], otherwise, we'll quickly
|
2011-12-13 18:25:51 -06:00
|
|
|
//end up with a nice overflow
|
|
|
|
if neg_exponent {
|
|
|
|
total = total / multiplier;
|
|
|
|
} else {
|
|
|
|
total = total * multiplier;
|
|
|
|
}
|
|
|
|
} else {
|
2012-02-22 06:18:15 -06:00
|
|
|
ret none;
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(pos < len) {
|
2012-02-22 06:18:15 -06:00
|
|
|
ret none;
|
2011-12-13 18:25:51 -06:00
|
|
|
} else {
|
|
|
|
if(neg) {
|
|
|
|
total *= -1f;
|
|
|
|
}
|
2012-02-22 06:18:15 -06:00
|
|
|
ret some(total);
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Section: Arithmetics
|
|
|
|
*/
|
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
#[doc = "
|
|
|
|
Compute the exponentiation of an integer by another integer as a float
|
|
|
|
|
|
|
|
# Arguments
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
* x - The base
|
|
|
|
* pow - The exponent
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
# Return value
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-03-06 21:09:32 -06:00
|
|
|
`NaN` if both `x` and `pow` are `0u`, otherwise `x^pow`
|
|
|
|
"]
|
2012-02-24 02:07:05 -06:00
|
|
|
fn pow_with_uint(base: uint, pow: uint) -> float {
|
2012-06-04 19:26:17 -05:00
|
|
|
if base == 0u {
|
|
|
|
if pow == 0u {
|
|
|
|
ret NaN as float;
|
|
|
|
}
|
|
|
|
ret 0.;
|
|
|
|
}
|
|
|
|
let mut my_pow = pow;
|
|
|
|
let mut total = 1f;
|
|
|
|
let mut multiplier = base as float;
|
|
|
|
while (my_pow > 0u) {
|
|
|
|
if my_pow % 2u == 1u {
|
|
|
|
total = total * multiplier;
|
|
|
|
}
|
|
|
|
my_pow /= 2u;
|
|
|
|
multiplier *= multiplier;
|
|
|
|
}
|
|
|
|
ret total;
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2012-06-04 19:26:17 -05:00
|
|
|
fn is_positive(x: float) -> bool { f64::is_positive(x as f64) }
|
|
|
|
fn is_negative(x: float) -> bool { f64::is_negative(x as f64) }
|
|
|
|
fn is_nonpositive(x: float) -> bool { f64::is_nonpositive(x as f64) }
|
|
|
|
fn is_nonnegative(x: float) -> bool { f64::is_nonnegative(x as f64) }
|
|
|
|
fn is_zero(x: float) -> bool { f64::is_zero(x as f64) }
|
|
|
|
fn is_infinite(x: float) -> bool { f64::is_infinite(x as f64) }
|
|
|
|
fn is_finite(x: float) -> bool { f64::is_finite(x as f64) }
|
|
|
|
fn is_NaN(x: float) -> bool { f64::is_NaN(x as f64) }
|
|
|
|
|
|
|
|
fn abs(x: float) -> float { f64::abs(x as f64) as float }
|
|
|
|
fn sqrt(x: float) -> float { f64::sqrt(x as f64) as float }
|
|
|
|
fn atan(x: float) -> float { f64::atan(x as f64) as float }
|
|
|
|
fn sin(x: float) -> float { f64::sin(x as f64) as float }
|
|
|
|
fn cos(x: float) -> float { f64::cos(x as f64) as float }
|
|
|
|
fn tan(x: float) -> float { f64::tan(x as f64) as float }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2012-06-25 15:41:13 -05:00
|
|
|
impl num of num::num for float {
|
|
|
|
fn add(&&other: float) -> float { ret self + other; }
|
|
|
|
fn sub(&&other: float) -> float { ret self - other; }
|
|
|
|
fn mul(&&other: float) -> float { ret self * other; }
|
|
|
|
fn div(&&other: float) -> float { ret self / other; }
|
|
|
|
fn modulo(&&other: float) -> float { ret self % other; }
|
|
|
|
fn neg() -> float { ret -self; }
|
|
|
|
|
|
|
|
fn to_int() -> int { ret self as int; }
|
|
|
|
fn from_int(n: int) -> float { ret n as float; }
|
2012-06-07 19:25:54 -05:00
|
|
|
}
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
#[test]
|
|
|
|
fn test_from_str() {
|
2012-02-22 06:18:15 -06:00
|
|
|
assert from_str("3") == some(3.);
|
|
|
|
assert from_str("3") == some(3.);
|
|
|
|
assert from_str("3.14") == some(3.14);
|
|
|
|
assert from_str("+3.14") == some(3.14);
|
|
|
|
assert from_str("-3.14") == some(-3.14);
|
|
|
|
assert from_str("2.5E10") == some(25000000000.);
|
|
|
|
assert from_str("2.5e10") == some(25000000000.);
|
|
|
|
assert from_str("25000000000.E-10") == some(2.5);
|
|
|
|
assert from_str(".") == some(0.);
|
|
|
|
assert from_str(".e1") == some(0.);
|
|
|
|
assert from_str(".e-1") == some(0.);
|
|
|
|
assert from_str("5.") == some(5.);
|
|
|
|
assert from_str(".5") == some(0.5);
|
|
|
|
assert from_str("0.5") == some(0.5);
|
|
|
|
assert from_str("0.5") == some(0.5);
|
|
|
|
assert from_str("0.5") == some(0.5);
|
|
|
|
assert from_str("-.5") == some(-0.5);
|
|
|
|
assert from_str("-.5") == some(-0.5);
|
|
|
|
assert from_str("-5") == some(-5.);
|
2012-04-14 13:21:57 -05:00
|
|
|
assert from_str("-0") == some(-0.);
|
|
|
|
assert from_str("0") == some(0.);
|
|
|
|
assert from_str("inf") == some(infinity);
|
|
|
|
assert from_str("-inf") == some(neg_infinity);
|
|
|
|
// note: NaN != NaN, hence this slightly complex test
|
|
|
|
alt from_str("NaN") {
|
|
|
|
some(f) { assert is_NaN(f); }
|
|
|
|
none { fail; }
|
|
|
|
}
|
2012-02-22 06:18:15 -06:00
|
|
|
|
|
|
|
assert from_str("") == none;
|
|
|
|
assert from_str("x") == none;
|
|
|
|
assert from_str(" ") == none;
|
|
|
|
assert from_str(" ") == none;
|
|
|
|
assert from_str("e") == none;
|
|
|
|
assert from_str("E") == none;
|
|
|
|
assert from_str("E1") == none;
|
|
|
|
assert from_str("1e1e1") == none;
|
|
|
|
assert from_str("1e1.1") == none;
|
|
|
|
assert from_str("1e1-1") == none;
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_positive() {
|
|
|
|
assert(is_positive(infinity));
|
|
|
|
assert(is_positive(1.));
|
|
|
|
assert(is_positive(0.));
|
|
|
|
assert(!is_positive(-1.));
|
|
|
|
assert(!is_positive(neg_infinity));
|
|
|
|
assert(!is_positive(1./neg_infinity));
|
|
|
|
assert(!is_positive(NaN));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_negative() {
|
|
|
|
assert(!is_negative(infinity));
|
|
|
|
assert(!is_negative(1.));
|
|
|
|
assert(!is_negative(0.));
|
|
|
|
assert(is_negative(-1.));
|
|
|
|
assert(is_negative(neg_infinity));
|
|
|
|
assert(is_negative(1./neg_infinity));
|
|
|
|
assert(!is_negative(NaN));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nonpositive() {
|
|
|
|
assert(!is_nonpositive(infinity));
|
|
|
|
assert(!is_nonpositive(1.));
|
|
|
|
assert(!is_nonpositive(0.));
|
|
|
|
assert(is_nonpositive(-1.));
|
|
|
|
assert(is_nonpositive(neg_infinity));
|
|
|
|
assert(is_nonpositive(1./neg_infinity));
|
|
|
|
assert(!is_nonpositive(NaN));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_nonnegative() {
|
|
|
|
assert(is_nonnegative(infinity));
|
|
|
|
assert(is_nonnegative(1.));
|
|
|
|
assert(is_nonnegative(0.));
|
|
|
|
assert(!is_nonnegative(-1.));
|
|
|
|
assert(!is_nonnegative(neg_infinity));
|
|
|
|
assert(!is_nonnegative(1./neg_infinity));
|
|
|
|
assert(!is_nonnegative(NaN));
|
|
|
|
}
|
|
|
|
|
2012-04-08 16:16:55 -05:00
|
|
|
#[test]
|
|
|
|
fn test_to_str_inf() {
|
|
|
|
assert to_str(infinity, 10u) == "inf";
|
|
|
|
assert to_str(-infinity, 10u) == "-inf";
|
|
|
|
}
|
|
|
|
|
2012-06-07 19:25:54 -05:00
|
|
|
#[test]
|
|
|
|
fn test_ifaces() {
|
2012-06-25 15:41:13 -05:00
|
|
|
fn test<U:num::num>(ten: U) {
|
2012-06-07 19:25:54 -05:00
|
|
|
assert (ten.to_int() == 10);
|
|
|
|
|
|
|
|
let two = ten.from_int(2);
|
|
|
|
assert (two.to_int() == 2);
|
|
|
|
|
|
|
|
assert (ten.add(two) == ten.from_int(12));
|
|
|
|
assert (ten.sub(two) == ten.from_int(8));
|
|
|
|
assert (ten.mul(two) == ten.from_int(20));
|
|
|
|
assert (ten.div(two) == ten.from_int(5));
|
|
|
|
assert (ten.modulo(two) == ten.from_int(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
test(10.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|
|
|
|
//
|
2011-12-22 05:54:38 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|