compiled-knowledge 4.0.0a18__cp312-cp312-win_amd64.whl → 4.0.0a20__cp312-cp312-win_amd64.whl
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 compiled-knowledge might be problematic. Click here for more details.
- ck/circuit/__init__.py +0 -3
- ck/circuit/_circuit_cy.c +37523 -0
- ck/circuit/_circuit_cy.cp312-win_amd64.pyd +0 -0
- ck/circuit/_circuit_cy.pxd +3 -4
- ck/circuit/_circuit_cy.pyx +80 -79
- ck/circuit_compiler/cython_vm_compiler/_compiler.c +19824 -0
- ck/circuit_compiler/cython_vm_compiler/_compiler.cp312-win_amd64.pyd +0 -0
- ck/circuit_compiler/cython_vm_compiler/_compiler.pyx +188 -75
- ck/circuit_compiler/cython_vm_compiler/cython_vm_compiler.py +29 -4
- ck/circuit_compiler/support/circuit_analyser/__init__.py +13 -0
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.c +10618 -0
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.cp312-win_amd64.pyd +0 -0
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.pyx +98 -0
- ck/circuit_compiler/support/{circuit_analyser.py → circuit_analyser/_circuit_analyser_py.py} +14 -2
- ck/pgm_compiler/ace/__init__.py +1 -1
- ck/pgm_compiler/support/circuit_table/__init__.py +1 -0
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy.c +16396 -0
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy.cp312-win_amd64.pyd +0 -0
- ck_demos/ace/demo_ace.py +5 -0
- {compiled_knowledge-4.0.0a18.dist-info → compiled_knowledge-4.0.0a20.dist-info}/METADATA +1 -1
- {compiled_knowledge-4.0.0a18.dist-info → compiled_knowledge-4.0.0a20.dist-info}/RECORD +24 -20
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy_cpp_verion.pyx +0 -601
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy_minimal_version.pyx +0 -311
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy_v4.0.0a17.pyx +0 -325
- {compiled_knowledge-4.0.0a18.dist-info → compiled_knowledge-4.0.0a20.dist-info}/WHEEL +0 -0
- {compiled_knowledge-4.0.0a18.dist-info → compiled_knowledge-4.0.0a20.dist-info}/licenses/LICENSE.txt +0 -0
- {compiled_knowledge-4.0.0a18.dist-info → compiled_knowledge-4.0.0a20.dist-info}/top_level.txt +0 -0
ck/circuit/__init__.py
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
# There are two implementations of the `circuit` module are provided
|
|
2
2
|
# for developer R&D purposes. One is pure Python and the other is Cython.
|
|
3
3
|
# Which implementation is used can be selected here.
|
|
4
|
-
# A similar selection can be made for the `circuit_table` module.
|
|
5
|
-
# Note that if the Cython implementation is chosen for `circuit_table` then
|
|
6
|
-
# the Cython implementation must be chosen for `circuit`.
|
|
7
4
|
|
|
8
5
|
# from ._circuit_py import (
|
|
9
6
|
from ._circuit_cy import (
|