Skip to content

Commit 004170c

Browse files
committed
README
1 parent ca63f12 commit 004170c

2 files changed

Lines changed: 56 additions & 48 deletions

File tree

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.14
1+
3.14.2

README.md

Lines changed: 55 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -11,63 +11,64 @@ Every function produces identical results to Python at the binary representation
1111

1212
## Compatibility Status
1313

14-
### math (55/55)
14+
### math (56/56)
1515

16+
- [x] `acos`
17+
- [x] `acosh`
18+
- [x] `asin`
19+
- [x] `asinh`
20+
- [x] `atan`
21+
- [x] `atan2`
22+
- [x] `atanh`
23+
- [x] `cbrt`
1624
- [x] `ceil`
1725
- [x] `copysign`
26+
- [x] `cos`
27+
- [x] `cosh`
28+
- [x] `degrees`
29+
- [x] `dist`
30+
- [x] `e`
31+
- [x] `erf`
32+
- [x] `erfc`
33+
- [x] `exp`
34+
- [x] `exp2`
35+
- [x] `expm1`
1836
- [x] `fabs`
1937
- [x] `floor`
38+
- [x] `fma`
2039
- [x] `fmod`
2140
- [x] `frexp`
41+
- [x] `fsum`
42+
- [x] `gamma`
43+
- [x] `hypot` (n-dimensional)
44+
- [x] `inf`
2245
- [x] `isclose`
2346
- [x] `isfinite`
2447
- [x] `isinf`
2548
- [x] `isnan`
2649
- [x] `ldexp`
27-
- [x] `modf`
28-
- [x] `nextafter`
29-
- [x] `remainder`
30-
- [x] `trunc`
31-
- [x] `ulp`
32-
- [x] `cbrt`
33-
- [x] `exp`
34-
- [x] `exp2`
35-
- [x] `expm1`
50+
- [x] `lgamma`
3651
- [x] `log`
3752
- [x] `log10`
3853
- [x] `log1p`
3954
- [x] `log2`
55+
- [x] `modf`
56+
- [x] `nan`
57+
- [x] `nextafter`
58+
- [x] `pi`
4059
- [x] `pow`
41-
- [x] `sqrt`
42-
- [x] `acos`
43-
- [x] `acosh`
44-
- [x] `asin`
45-
- [x] `asinh`
46-
- [x] `atan`
47-
- [x] `atan2`
48-
- [x] `atanh`
49-
- [x] `cos`
50-
- [x] `cosh`
60+
- [x] `prod`
61+
- [x] `radians`
62+
- [x] `remainder`
5163
- [x] `sin`
5264
- [x] `sinh`
65+
- [x] `sqrt`
66+
- [x] `sumprod` (`sumprod`, `sumprod_int`, `sumprod_generic`)
5367
- [x] `tan`
5468
- [x] `tanh`
55-
- [x] `erf`
56-
- [x] `erfc`
57-
- [x] `gamma`
58-
- [x] `lgamma`
59-
- [x] `dist`
60-
- [x] `fsum`
61-
- [x] `hypot`
62-
- [x] `prod`
63-
- [x] `sumprod`
64-
- [x] `degrees`
65-
- [x] `radians`
66-
- [x] `pi`
67-
- [x] `e`
6869
- [x] `tau`
69-
- [x] `inf`
70-
- [x] `nan`
70+
- [x] `trunc`
71+
- [x] `ulp`
7172

7273
### math.integer (6/6, requires `num-bigint` or `malachite-bigint` feature)
7374

@@ -78,20 +79,9 @@ Every function produces identical results to Python at the binary representation
7879
- [x] `lcm`
7980
- [x] `perm`
8081

81-
### cmath (24/24, requires `complex` feature)
82+
### cmath (31/31, requires `complex` feature)
8283

8384
- [x] `abs`
84-
- [x] `isclose`
85-
- [x] `isfinite`
86-
- [x] `isinf`
87-
- [x] `isnan`
88-
- [x] `phase`
89-
- [x] `polar`
90-
- [x] `rect`
91-
- [x] `exp`
92-
- [x] `log`
93-
- [x] `log10`
94-
- [x] `sqrt`
9585
- [x] `acos`
9686
- [x] `acosh`
9787
- [x] `asin`
@@ -100,10 +90,28 @@ Every function produces identical results to Python at the binary representation
10090
- [x] `atanh`
10191
- [x] `cos`
10292
- [x] `cosh`
93+
- [x] `e`
94+
- [x] `exp`
95+
- [x] `inf`
96+
- [x] `infj`
97+
- [x] `isclose`
98+
- [x] `isfinite`
99+
- [x] `isinf`
100+
- [x] `isnan`
101+
- [x] `log`
102+
- [x] `log10`
103+
- [x] `nan`
104+
- [x] `nanj`
105+
- [x] `phase`
106+
- [x] `pi`
107+
- [x] `polar`
108+
- [x] `rect`
103109
- [x] `sin`
104110
- [x] `sinh`
111+
- [x] `sqrt`
105112
- [x] `tan`
106113
- [x] `tanh`
114+
- [x] `tau`
107115

108116
## Usage
109117

0 commit comments

Comments
 (0)