initial commit

This commit is contained in:
Quentin Roussel
2024-12-05 18:39:07 +08:00
commit 9a400b14ca
6 changed files with 307 additions and 0 deletions

4
example.py Normal file
View File

@@ -0,0 +1,4 @@
from main import create_module_from_constrain
constrain = lambda O, I1_1, I2_2: O == (I1_1 & I2_2) + 1
print(create_module_from_constrain(constrain))