Metadata-Version: 1.1
Name: boolcalc
Version: 0.0.8
Summary: basic boolean calculator
Home-page: UNKNOWN
Author: Otsuka Yuno
Author-email: moreseus@outlook.com
License: MIT
Description: This is boolean calculator with operate from left to right.
        
        #---------------------------#
        Develop by PAO,RAM and YN
        #---------------------------#
        
        Example
        
        import boolcalc
        
        inp = "T ^ T <--> ( T --> F v ( T ^ T ) )".split(" ");
        print(boolcalc.calculate(inp));
        
        inp = "( ( ( T --> F --> T v F ) <--> T ) ^ T )".split(" ");
        print(boolcalc.calculate(inp));
        
        inp = "( ( ( T --> F --> T v F ) <--> T ) ^ T() ".split(" ");
        print(boolcalc.calculate(inp));
        
        inp = ["(","T","<-->","F","^","F",")"];
        print(boolcalc.calculate(inp));
        
        This library use expression tree data structure to operate the postfix of boolean term.
        
        To convert infix to postfix, use the stack data stucture.
        
        The mentioned datastructure we implement by ourselves.
Keywords: calculator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
