mpbn 4.0__tar.gz → 4.1__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.
Potentially problematic release.
This version of mpbn might be problematic. Click here for more details.
- {mpbn-4.0 → mpbn-4.1}/PKG-INFO +1 -1
- {mpbn-4.0 → mpbn-4.1}/mpbn/boolfunclib/aeon_impl.py +2 -2
- {mpbn-4.0 → mpbn-4.1}/mpbn.egg-info/PKG-INFO +1 -1
- {mpbn-4.0 → mpbn-4.1}/setup.py +1 -1
- {mpbn-4.0 → mpbn-4.1}/MANIFEST.in +0 -0
- {mpbn-4.0 → mpbn-4.1}/README.md +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/__init__.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/asplib/eval_circuit.asp +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/asplib/eval_mixed.asp +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/asplib/mp_attractor.asp +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/asplib/mp_eval.asp +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/asplib/mp_positivereach-np.asp +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/boolfunclib/__init__.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/boolfunclib/pyeda_impl.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/cli/__init__.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/cli/sim.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/converters.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn/simulation.py +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn.egg-info/SOURCES.txt +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn.egg-info/dependency_links.txt +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn.egg-info/entry_points.txt +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn.egg-info/requires.txt +0 -0
- {mpbn-4.0 → mpbn-4.1}/mpbn.egg-info/top_level.txt +0 -0
- {mpbn-4.0 → mpbn-4.1}/setup.cfg +0 -0
{mpbn-4.0 → mpbn-4.1}/PKG-INFO
RENAMED
|
@@ -58,9 +58,9 @@ def ba_to_bdd(ba: boolean.BooleanAlgebra, f: boolean.Expression, ctx: BddVariabl
|
|
|
58
58
|
# Check that all variables that exist in `f` also exist in `ctx`.
|
|
59
59
|
assert all((ctx.find_variable(var) is not None) for var in variables)
|
|
60
60
|
def ba_to_bdd_rec(f: boolean.Expression) -> Bdd:
|
|
61
|
-
if type(f) is ba.TRUE or isinstance(f,
|
|
61
|
+
if type(f) is ba.TRUE or isinstance(f, boolean._TRUE):
|
|
62
62
|
return ctx.mk_const(True)
|
|
63
|
-
if type(f) is ba.FALSE or isinstance(f,
|
|
63
|
+
if type(f) is ba.FALSE or isinstance(f, boolean._FALSE):
|
|
64
64
|
return ctx.mk_const(False)
|
|
65
65
|
if type(f) is ba.Symbol:
|
|
66
66
|
return ctx.mk_literal(str(f.obj), True)
|
{mpbn-4.0 → mpbn-4.1}/setup.py
RENAMED
|
File without changes
|
{mpbn-4.0 → mpbn-4.1}/README.md
RENAMED
|
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
|
{mpbn-4.0 → mpbn-4.1}/setup.cfg
RENAMED
|
File without changes
|