diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 0d93acea..ab06878a 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -6,10 +6,7 @@
-
-
-
-
+
@@ -247,6 +244,7 @@
"Python tests.pytest for test_minimal_logic_1.TestPL4.test_pl4.executor": "Debug",
"Python tests.pytest for test_minimal_logic_1.TestPL4.test_pl4_with_auto_derivation.executor": "Run",
"Python tests.pytest for test_minimal_logic_1.TestPL5.test_pl5_with_auto_derivation.executor": "Run",
+ "Python tests.pytest for test_packaging.TestPackaging.test_bundling.executor": "Run",
"Python tests.pytest for test_pl1.TestMinimalPropositionalLogic.test_init.executor": "Run",
"Python tests.pytest for test_pl1.TestPL1.test_compounding_formulas_1.executor": "Debug",
"Python tests.pytest for test_pl1.TestPL1.test_connectives_1.executor": "Debug",
@@ -463,7 +461,7 @@
-
+
@@ -721,41 +719,41 @@
-
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
@@ -768,7 +766,7 @@
-
+
@@ -802,20 +800,20 @@
+
-
+
-
@@ -835,14 +833,6 @@
1687980987309
-
-
- 1733639416240
-
-
-
- 1733639416240
-
1733644925706
@@ -1227,7 +1217,15 @@
1734725759821
-
+
+
+ 1734726097638
+
+
+
+ 1734726097638
+
+
random
@@ -1398,6 +1396,11 @@
86
+
+ file://$PROJECT_DIR$/tests/test_packaging.py
+ 15
+
+
diff --git a/tests/__pycache__/test_shared_library.cpython-312-pytest-8.3.2.pyc b/tests/__pycache__/test_shared_library.cpython-312-pytest-8.3.2.pyc
index a5b201b7..9961a3f6 100644
Binary files a/tests/__pycache__/test_shared_library.cpython-312-pytest-8.3.2.pyc and b/tests/__pycache__/test_shared_library.cpython-312-pytest-8.3.2.pyc differ
diff --git a/tests/test_shared_library.py b/tests/test_shared_library.py
index 3e4a722f..ebf637d8 100644
--- a/tests/test_shared_library.py
+++ b/tests/test_shared_library.py
@@ -5,7 +5,8 @@
def create_atomic_connector(c: str):
ren = pu.RendererForStringConstant(string_constant=c)
rep = pu.Representation(uid=pu.create_uid(f'rep'), renderers=(ren,))
- con = pu.Connector(uid=pu.create_uid(f'con'), connector_representation=rep)
+ con = pu.Connector(uid=pu.create_uid(f'con'), connector_representation=rep,
+ formula_representation=pu.formula_notations.atomic_formula)
return con
@@ -15,5 +16,6 @@ def create_function(c: str):
'{% endfor %})')
ren = pu.RendererForStringTemplate(string_template=string_template)
rep = pu.Representation(uid=pu.create_uid(f'rep'), renderers=(ren,))
- con = pu.Connector(uid=pu.create_uid(f'fun'), connector_representation=rep)
+ con = pu.Connector(uid=pu.create_uid(f'fun'), connector_representation=rep,
+ formula_representation=pu.formula_notations.function_formula)
return con