Metadata-Version: 2.1
Name: is-bigger
Version: 0.2.0
Summary: A package to compare two integers
Author: ShackledMars261
License: MIT
Project-URL: Documentation, https://github.com/ShackledMars261/isbigger/wiki
Project-URL: Bug Tracker, https://github.com/ShackledMars261/isbigger/issues
Keywords: size,comparison,larger,smaller,equal,logic
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Requires-Dist: torch ==2.2.0
Requires-Dist: torchvision ==0.17.0
Requires-Dist: numpy ==1.25.2

# is_bigger

## Normal
```
from is_bigger.functions import *

isBigger(2,1) # True
isSmaller(2,1) # False
isEqual(3,3) # True
isNotBigger(3,1) # False
isNotSmaller(3,1) # True
isNotEqual(3,1) # True
```

## Machine Learning (slower and doesn't always work)
```
from is_bigger.mlfunctions import *

ml_is_bigger(3,2) # True
ml_is_smaller(2,3) # True
ml_is_equal(1,1) # True
ml_is_not_bigger(2,2) # True
ml_is_not_smaller(3,2) # True
ml_is_not_equal(4,4) # False
```
