You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I want to be able to build Python software that can deal with operation tables like the FMT tool.
Describe the solution you'd like
A Python function + CLI that takes the equation list as input, an operation table as an argument, and returns JSON with 1/0 for each equation.
Describe alternatives you've considered
I've been using the FMT tool, but I can't use it in my Python scripts.
Equation1 x = x
Equation2 x = y
Equation3 x = x ◇ x
Equation4 x = x ◇ y
Equation5 x = y ◇ x
Equation6 x = y ◇ y
Equation7 x = y ◇ z
Equation8 x = x ◇ (x ◇ x)
Equation9 x = x ◇ (x ◇ y)
Equation10 x = x ◇ (y ◇ x)
Equation11 x = x ◇ (y ◇ y)
Equation12 x = x ◇ (y ◇ z)
Equation13 x = y ◇ (x ◇ x)
Equation14 x = y ◇ (x ◇ y)
Is your feature request related to a problem? Please describe.
I want to be able to build Python software that can deal with operation tables like the FMT tool.
Describe the solution you'd like
A Python function + CLI that takes the equation list as input, an operation table as an argument, and returns JSON with 1/0 for each equation.
Describe alternatives you've considered
I've been using the FMT tool, but I can't use it in my Python scripts.
Additional context
The tool is ready. See: #764
You can run it like this:
python3 magmas.py operation.txt equation_list.txt > solution.txt
Optable in this format:
Equation list in this format (already available):
Then you'll get the solutions as a JSON file:
The text was updated successfully, but these errors were encountered: