Metadata-Version: 2.1
Name: ddtcurve
Version: 0.1
Summary: A package used to calculate the strength of the ddtank game.
Author-email: zx <jugking6688@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy~=1.21.4
Requires-Dist: scipy~=1.10.1

# ddtcurve

A package used to calculate the strength of the ddtank game.

- Contact the author: jugking6688@gmail.com
---

Examples are as follows：
```python
import ddtcurve as ddtc

result = ddtc.predict(65, 0, 10, 0)
print(result)

result = ddtc.predict(65, 1, 10, 0)
print(result)

result = ddtc.predict(65, 0, 10, 1)
print(result)
```
Output:
```
56.984355730170684
54.693446341504185
58.14777549325182
```

`Remarks:`

`There are many authors who have contributed to this package. :)`







