mathai 0.2.8__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {mathai-0.2.8 → mathai-0.3.0}/PKG-INFO +1 -1
  2. {mathai-0.2.8 → mathai-0.3.0}/mathai/parser.py +7 -3
  3. {mathai-0.2.8 → mathai-0.3.0}/mathai.egg-info/PKG-INFO +1 -1
  4. {mathai-0.2.8 → mathai-0.3.0}/setup.py +1 -1
  5. {mathai-0.2.8 → mathai-0.3.0}/README.md +0 -0
  6. {mathai-0.2.8 → mathai-0.3.0}/mathai/__init__.py +0 -0
  7. {mathai-0.2.8 → mathai-0.3.0}/mathai/apart.py +0 -0
  8. {mathai-0.2.8 → mathai-0.3.0}/mathai/base.py +0 -0
  9. {mathai-0.2.8 → mathai-0.3.0}/mathai/console.py +0 -0
  10. {mathai-0.2.8 → mathai-0.3.0}/mathai/diff.py +0 -0
  11. {mathai-0.2.8 → mathai-0.3.0}/mathai/expand.py +0 -0
  12. {mathai-0.2.8 → mathai-0.3.0}/mathai/factor.py +0 -0
  13. {mathai-0.2.8 → mathai-0.3.0}/mathai/fraction.py +0 -0
  14. {mathai-0.2.8 → mathai-0.3.0}/mathai/integrate.py +0 -0
  15. {mathai-0.2.8 → mathai-0.3.0}/mathai/inverse.py +0 -0
  16. {mathai-0.2.8 → mathai-0.3.0}/mathai/limit.py +0 -0
  17. {mathai-0.2.8 → mathai-0.3.0}/mathai/linear.py +0 -0
  18. {mathai-0.2.8 → mathai-0.3.0}/mathai/logic.py +0 -0
  19. {mathai-0.2.8 → mathai-0.3.0}/mathai/printeq.py +0 -0
  20. {mathai-0.2.8 → mathai-0.3.0}/mathai/simplify.py +0 -0
  21. {mathai-0.2.8 → mathai-0.3.0}/mathai/structure.py +0 -0
  22. {mathai-0.2.8 → mathai-0.3.0}/mathai/tool.py +0 -0
  23. {mathai-0.2.8 → mathai-0.3.0}/mathai/trig.py +0 -0
  24. {mathai-0.2.8 → mathai-0.3.0}/mathai/univariate_inequality.py +0 -0
  25. {mathai-0.2.8 → mathai-0.3.0}/mathai.egg-info/SOURCES.txt +0 -0
  26. {mathai-0.2.8 → mathai-0.3.0}/mathai.egg-info/dependency_links.txt +0 -0
  27. {mathai-0.2.8 → mathai-0.3.0}/mathai.egg-info/requires.txt +0 -0
  28. {mathai-0.2.8 → mathai-0.3.0}/mathai.egg-info/top_level.txt +0 -0
  29. {mathai-0.2.8 → mathai-0.3.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mathai
3
- Version: 0.2.8
3
+ Version: 0.3.0
4
4
  Summary: Mathematics solving Ai tailored to NCERT
5
5
  Home-page: https://github.com/infinity390/mathai4
6
6
  Author: educated indians are having a low iq and are good for nothing
@@ -18,9 +18,13 @@ grammar = """
18
18
  | logic_or "|" logic_and -> or
19
19
  | logic_or "||" logic_and -> or
20
20
 
21
- ?logic_and: comparison
22
- | logic_and "&" comparison -> and
23
- | logic_and "&&" comparison -> and
21
+ ?logic_and: logic_not
22
+ | logic_and "&" logic_not -> and
23
+ | logic_and "&&" logic_not -> and
24
+
25
+ ?logic_not: comparison
26
+ | "!" logic_not -> not
27
+ | "~" logic_not -> not
24
28
 
25
29
  ?comparison: arithmetic
26
30
  | comparison "=" arithmetic -> eq
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mathai
3
- Version: 0.2.8
3
+ Version: 0.3.0
4
4
  Summary: Mathematics solving Ai tailored to NCERT
5
5
  Home-page: https://github.com/infinity390/mathai4
6
6
  Author: educated indians are having a low iq and are good for nothing
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="mathai",
5
- version="0.2.8",
5
+ version="0.3.0",
6
6
  description="Mathematics solving Ai tailored to NCERT",
7
7
  long_description=open("README.md").read(),
8
8
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes