2017-12-23 19:08:53 -08:00
|
|
|
const std = @import("../index.zig");
|
|
|
|
const math = std.math;
|
|
|
|
const assert = std.debug.assert;
|
2017-06-16 01:26:10 -07:00
|
|
|
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn isInf(x: var) bool {
|
2017-06-16 01:26:10 -07:00
|
|
|
const T = @typeOf(x);
|
|
|
|
switch (T) {
|
|
|
|
f32 => {
|
|
|
|
const bits = @bitCast(u32, x);
|
2017-12-21 21:50:30 -08:00
|
|
|
return bits & 0x7FFFFFFF == 0x7F800000;
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
f64 => {
|
|
|
|
const bits = @bitCast(u64, x);
|
2017-12-21 21:50:30 -08:00
|
|
|
return bits & (@maxValue(u64) >> 1) == (0x7FF << 52);
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
else => {
|
|
|
|
@compileError("isInf not implemented for " ++ @typeName(T));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn isPositiveInf(x: var) bool {
|
2017-06-16 01:26:10 -07:00
|
|
|
const T = @typeOf(x);
|
|
|
|
switch (T) {
|
|
|
|
f32 => {
|
2017-12-21 21:50:30 -08:00
|
|
|
return @bitCast(u32, x) == 0x7F800000;
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
f64 => {
|
2017-12-21 21:50:30 -08:00
|
|
|
return @bitCast(u64, x) == 0x7FF << 52;
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
else => {
|
|
|
|
@compileError("isPositiveInf not implemented for " ++ @typeName(T));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-25 01:10:11 -08:00
|
|
|
pub fn isNegativeInf(x: var) bool {
|
2017-06-16 01:26:10 -07:00
|
|
|
const T = @typeOf(x);
|
|
|
|
switch (T) {
|
|
|
|
f32 => {
|
2017-12-21 21:50:30 -08:00
|
|
|
return @bitCast(u32, x) == 0xFF800000;
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
f64 => {
|
2017-12-21 21:50:30 -08:00
|
|
|
return @bitCast(u64, x) == 0xFFF << 52;
|
2017-06-16 01:26:10 -07:00
|
|
|
},
|
|
|
|
else => {
|
|
|
|
@compileError("isNegativeInf not implemented for " ++ @typeName(T));
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 11:36:33 -07:00
|
|
|
test "math.isInf" {
|
2017-06-16 01:26:10 -07:00
|
|
|
assert(!isInf(f32(0.0)));
|
|
|
|
assert(!isInf(f32(-0.0)));
|
|
|
|
assert(!isInf(f64(0.0)));
|
|
|
|
assert(!isInf(f64(-0.0)));
|
|
|
|
assert(isInf(math.inf(f32)));
|
|
|
|
assert(isInf(-math.inf(f32)));
|
|
|
|
assert(isInf(math.inf(f64)));
|
|
|
|
assert(isInf(-math.inf(f64)));
|
|
|
|
}
|
|
|
|
|
2017-06-19 11:36:33 -07:00
|
|
|
test "math.isPositiveInf" {
|
2017-06-16 01:26:10 -07:00
|
|
|
assert(!isPositiveInf(f32(0.0)));
|
|
|
|
assert(!isPositiveInf(f32(-0.0)));
|
|
|
|
assert(!isPositiveInf(f64(0.0)));
|
|
|
|
assert(!isPositiveInf(f64(-0.0)));
|
|
|
|
assert(isPositiveInf(math.inf(f32)));
|
|
|
|
assert(!isPositiveInf(-math.inf(f32)));
|
|
|
|
assert(isPositiveInf(math.inf(f64)));
|
|
|
|
assert(!isPositiveInf(-math.inf(f64)));
|
|
|
|
}
|
|
|
|
|
2017-06-19 11:36:33 -07:00
|
|
|
test "math.isNegativeInf" {
|
2017-06-16 01:26:10 -07:00
|
|
|
assert(!isNegativeInf(f32(0.0)));
|
|
|
|
assert(!isNegativeInf(f32(-0.0)));
|
|
|
|
assert(!isNegativeInf(f64(0.0)));
|
|
|
|
assert(!isNegativeInf(f64(-0.0)));
|
|
|
|
assert(!isNegativeInf(math.inf(f32)));
|
|
|
|
assert(isNegativeInf(-math.inf(f32)));
|
|
|
|
assert(!isNegativeInf(math.inf(f64)));
|
|
|
|
assert(isNegativeInf(-math.inf(f64)));
|
|
|
|
}
|