FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
lpython/integration_tests/expr_14.py at main · sak-codes/lpython · GitHub
sak-codes
/
lpython
Public
forked from
lcompilers/lpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
lpython
/
integration_tests
/
expr_14.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (33 loc) · 892 Bytes
Breadcrumbs
lpython
/
integration_tests
/
expr_14.py
Copy path
File metadata and controls
41 lines (33 loc) · 892 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
ltypes
import
i32
,
i64
,
f32
,
f64
,
c32
,
c64
def
test_divide
():
a1
:
i32
;
a2
:
i32
;
a3
:
f64
;
b1
:
i64
;
b2
:
i64
;
b3
:
f64
;
c1
:
f32
;
c2
:
f32
;
c3
:
f32
;
d1
:
f64
;
d2
:
f64
;
d3
:
f64
;
e1
:
c32
;
e2
:
c32
;
e3
:
c32
;
f1
:
c64
;
f2
:
c64
;
f3
:
c64
;
a1
=
1
a2
=
9
a3
=
a2
/
a1
assert
abs
(
a3
-
9.0
)
<=
1e-12
b1
=
i64
(
2
)
b2
=
i64
(
10
)
b3
=
b2
/
b1
assert
abs
(
b3
-
5.0
)
<=
1e-12
c1
=
f32
(
3.0
)
c2
=
f32
(
11.0
)
c3
=
c2
/
c1
assert
abs
(
c3
-
f32
(
3.666666
))
<=
f32
(
1e-6
)
d1
=
4.0
d2
=
12.0
d3
=
d2
/
d1
assert
abs
(
d3
-
3.0
)
<=
1e-12
e1
=
c32
(
5
)
+
c32
(
6j
)
e2
=
c32
(
13
)
+
c32
(
14j
)
e3
=
e2
/
e1
assert
abs
(
e3
-
c32
(
2.442622950819672
)
+
c32
(
0.13114754098360643j
))
<=
f32
(
1e-6
)
f1
=
c64
(
7
)
+
8j
f2
=
c64
(
15
)
+
16j
f3
=
f2
/
f1
assert
abs
(
f3
-
c64
(
2.061946902654867
)
+
0.07079646017699115j
)
<=
1e-6
test_divide
()
Back
|
FazBrowse Home
|
New Git URL