1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
const std = @import("../std.zig");
const math = std.math;
const expect = std.testing.expect;
const maxInt = std.math.maxInt;
/// Returns whether x is an infinity, ignoring sign.
pub fn isInf(x: anytype) bool {
const T = @TypeOf(x);
switch (T) {
f16 => {
const bits = @bitCast(u16, x);
return bits & 0x7FFF == 0x7C00;
},
f32 => {
const bits = @bitCast(u32, x);
return bits & 0x7FFFFFFF == 0x7F800000;
},
f64 => {
const bits = @bitCast(u64, x);
return bits & (maxInt(u64) >> 1) == (0x7FF << 52);
},
f128 => {
const bits = @bitCast(u128, x);
return bits & (maxInt(u128) >> 1) == (0x7FFF << 112);
},
else => {
@compileError("isInf not implemented for " ++ @typeName(T));
},
}
}
/// Returns whether x is an infinity with a positive sign.
pub fn isPositiveInf(x: anytype) bool {
const T = @TypeOf(x);
switch (T) {
f16 => {
return @bitCast(u16, x) == 0x7C00;
},
f32 => {
return @bitCast(u32, x) == 0x7F800000;
},
f64 => {
return @bitCast(u64, x) == 0x7FF << 52;
},
f128 => {
return @bitCast(u128, x) == 0x7FFF << 112;
},
else => {
@compileError("isPositiveInf not implemented for " ++ @typeName(T));
},
}
}
/// Returns whether x is an infinity with a negative sign.
pub fn isNegativeInf(x: anytype) bool {
const T = @TypeOf(x);
switch (T) {
f16 => {
return @bitCast(u16, x) == 0xFC00;
},
f32 => {
return @bitCast(u32, x) == 0xFF800000;
},
f64 => {
return @bitCast(u64, x) == 0xFFF << 52;
},
f128 => {
return @bitCast(u128, x) == 0xFFFF << 112;
},
else => {
@compileError("isNegativeInf not implemented for " ++ @typeName(T));
},
}
}
test "math.isInf" {
try expect(!isInf(@as(f16, 0.0)));
try expect(!isInf(@as(f16, -0.0)));
try expect(!isInf(@as(f32, 0.0)));
try expect(!isInf(@as(f32, -0.0)));
try expect(!isInf(@as(f64, 0.0)));
try expect(!isInf(@as(f64, -0.0)));
try expect(!isInf(@as(f128, 0.0)));
try expect(!isInf(@as(f128, -0.0)));
try expect(isInf(math.inf(f16)));
try expect(isInf(-math.inf(f16)));
try expect(isInf(math.inf(f32)));
try expect(isInf(-math.inf(f32)));
try expect(isInf(math.inf(f64)));
try expect(isInf(-math.inf(f64)));
try expect(isInf(math.inf(f128)));
try expect(isInf(-math.inf(f128)));
}
test "math.isPositiveInf" {
try expect(!isPositiveInf(@as(f16, 0.0)));
try expect(!isPositiveInf(@as(f16, -0.0)));
try expect(!isPositiveInf(@as(f32, 0.0)));
try expect(!isPositiveInf(@as(f32, -0.0)));
try expect(!isPositiveInf(@as(f64, 0.0)));
try expect(!isPositiveInf(@as(f64, -0.0)));
try expect(!isPositiveInf(@as(f128, 0.0)));
try expect(!isPositiveInf(@as(f128, -0.0)));
try expect(isPositiveInf(math.inf(f16)));
try expect(!isPositiveInf(-math.inf(f16)));
try expect(isPositiveInf(math.inf(f32)));
try expect(!isPositiveInf(-math.inf(f32)));
try expect(isPositiveInf(math.inf(f64)));
try expect(!isPositiveInf(-math.inf(f64)));
try expect(isPositiveInf(math.inf(f128)));
try expect(!isPositiveInf(-math.inf(f128)));
}
test "math.isNegativeInf" {
try expect(!isNegativeInf(@as(f16, 0.0)));
try expect(!isNegativeInf(@as(f16, -0.0)));
try expect(!isNegativeInf(@as(f32, 0.0)));
try expect(!isNegativeInf(@as(f32, -0.0)));
try expect(!isNegativeInf(@as(f64, 0.0)));
try expect(!isNegativeInf(@as(f64, -0.0)));
try expect(!isNegativeInf(@as(f128, 0.0)));
try expect(!isNegativeInf(@as(f128, -0.0)));
try expect(!isNegativeInf(math.inf(f16)));
try expect(isNegativeInf(-math.inf(f16)));
try expect(!isNegativeInf(math.inf(f32)));
try expect(isNegativeInf(-math.inf(f32)));
try expect(!isNegativeInf(math.inf(f64)));
try expect(isNegativeInf(-math.inf(f64)));
try expect(!isNegativeInf(math.inf(f128)));
try expect(isNegativeInf(-math.inf(f128)));
}
|