Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
419670dc
Kaydet (Commit)
419670dc
authored
Eyl 06, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rewrite to use test_support's fine fcmp instead -- I didn't know that
existed when I wrote this test.
üst
4bd810aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
16 deletions
+3
-16
test_complex.py
Lib/test/test_complex.py
+3
-16
No files found.
Lib/test/test_complex.py
Dosyayı görüntüle @
419670dc
from
test_support
import
TestFailed
from
test_support
import
TestFailed
,
fcmp
from
random
import
random
# XXX need many, many more tests here.
nerrors
=
0
def
check_close_real
(
x
,
y
,
eps
=
1e-9
):
"""Return true iff floats x and y "are close
\"
"""
# put the one with larger magnitude second
if
abs
(
x
)
>
abs
(
y
):
x
,
y
=
y
,
x
if
y
==
0
:
return
abs
(
x
)
<
eps
if
x
==
0
:
return
abs
(
y
)
<
eps
# check that relative difference < eps
return
abs
((
x
-
y
)
/
y
)
<
eps
def
check_close
(
x
,
y
,
eps
=
1e-9
):
def
check_close
(
x
,
y
):
"""Return true iff complexes x and y "are close
\"
"""
return
check_close_real
(
x
.
real
,
y
.
real
,
eps
)
and
\
check_close_real
(
x
.
imag
,
y
.
imag
,
eps
)
return
fcmp
(
x
.
real
,
y
.
real
)
==
0
==
fcmp
(
x
.
imag
,
y
.
imag
)
def
test_div
(
x
,
y
):
"""Compute complex z=x*y, and check that z/x==y and z/y==x."""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment