-
Notifications
You must be signed in to change notification settings - Fork 0
/
cplx2.go
122 lines (98 loc) · 1.9 KB
/
cplx2.go
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
// run
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Test arithmetic on complex numbers, including multiplication and division.
package main
const (
R = 5
I = 6i
C1 = R + I // ADD(5,6)
C2 = R - I // SUB(5,-6)
C3 = -(R + I) // ADD(5,6) NEG(-5,-6)
C4 = -(R - I) // SUB(5,-6) NEG(-5,6)
C5 = C1 + R // ADD(10,6)
C6 = C1 + I // ADD(5,12)
Ca = C5 + C6 // ADD(15,18)
Cb = C5 - C6 // SUB(5,-6)
Cc = C5 * C6 // MUL(-22,-150)
Cd = C5 / C6 // DIV(0.721893,-0.532544)
Ce = Cd * C6 // MUL(10,6) sb C5
)
func main() {
var r complex64 = 5 + 0i
if r != R {
println("opcode 1", r, R)
panic("fail")
}
var i complex64 = 6i
if i != I {
println("opcode 2", i, I)
panic("fail")
}
c1 := r + i
if c1 != C1 {
println("opcode x", c1, C1)
panic("fail")
}
c2 := r - i
if c2 != C2 {
println("opcode x", c2, C2)
panic("fail")
}
c3 := -(r + i)
if c3 != C3 {
println("opcode x", c3, C3)
panic("fail")
}
c4 := -(r - i)
if c4 != C4 {
println("opcode x", c4, C4)
panic("fail")
}
c5 := c1 + r
if c5 != C5 {
println("opcode x", c5, C5)
panic("fail")
}
c6 := c1 + i
if c6 != C6 {
println("opcode x", c6, C6)
panic("fail")
}
ca := c5 + c6
if ca != Ca {
println("opcode x", ca, Ca)
panic("fail")
}
cb := c5 - c6
if cb != Cb {
println("opcode x", cb, Cb)
panic("fail")
}
cc := c5 * c6
if cc != Cc {
println("opcode x", cc, Cc)
panic("fail")
}
cd := c5 / c6
if cd != Cd {
println("opcode x", cd, Cd)
panic("fail")
}
ce := cd * c6
if ce != Ce {
println("opcode x", ce, Ce)
panic("fail")
}
r32 := real(complex64(ce))
if r32 != float32(real(Ce)) {
println("real(complex64(ce))", r32, real(Ce))
panic("fail")
}
r64 := real(complex128(ce))
if r64 != real(Ce) {
println("real(complex128(ce))", r64, real(Ce))
panic("fail")
}
}