compiled-knowledge 4.0.0a20__cp313-cp313-win_amd64.whl → 4.0.0a22__cp313-cp313-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.

@@ -139,6 +139,7 @@ def _make_instructions(
139
139
  for node_id, const_idx in node_to_const_idx.items():
140
140
  node_to_element[node_id] = _ElementID(_CONSTS, const_idx)
141
141
  # var nodes
142
+ var_node: VarNode
142
143
  for i, var_node in enumerate(analysis.var_nodes):
143
144
  if var_node.is_const():
144
145
  node_to_element[id(var_node)] = node_to_element[id(var_node.const)]
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from dataclasses import dataclass
4
4
  from enum import Enum
5
- from typing import Sequence, Optional, Tuple, Dict, Protocol
5
+ from typing import Sequence, Optional, Tuple, Dict, Protocol, assert_never
6
6
 
7
7
  import llvmlite.binding as llvm
8
8
  import llvmlite.ir as ir
@@ -238,7 +238,7 @@ class _FunctionBuilderTmps(_FunctionBuilder):
238
238
  if idx is not None:
239
239
  return builder.load(builder.gep(self.out_args, [ir.Constant(self.llvm_idx_type, idx)]))
240
240
 
241
- assert False, 'not reached'
241
+ assert_never('not reached')
242
242
 
243
243
  def store_calculation(self, value: ir.Value, op_node: OpNode) -> None:
244
244
  """
@@ -262,7 +262,7 @@ class _FunctionBuilderTmps(_FunctionBuilder):
262
262
  builder.store(value, ptr)
263
263
  return
264
264
 
265
- assert False, 'not reached'
265
+ assert_never('not reached')
266
266
 
267
267
  def store_result(self, value: ir.Value, idx: int) -> None:
268
268
  """
@@ -359,7 +359,7 @@ class _FunctionBuilderStack(_FunctionBuilder):
359
359
  if idx is not None:
360
360
  return builder.load(builder.gep(self.out_args, [ir.Constant(self.llvm_idx_type, idx)]))
361
361
 
362
- assert False, 'not reached'
362
+ assert_never('not reached')
363
363
 
364
364
  def store_calculation(self, value: ir.Value, op_node: OpNode) -> None:
365
365
  """
@@ -13,7 +13,7 @@
13
13
  "/O2"
14
14
  ],
15
15
  "include_dirs": [
16
- "C:\\Users\\runneradmin\\AppData\\Local\\Temp\\build-env-40ndt3v7\\Lib\\site-packages\\numpy\\_core\\include"
16
+ "C:\\Users\\runneradmin\\AppData\\Local\\Temp\\build-env-0p_rjbh1\\Lib\\site-packages\\numpy\\_core\\include"
17
17
  ],
18
18
  "name": "ck.circuit_compiler.support.circuit_analyser._circuit_analyser_cy",
19
19
  "sources": [
ck/pgm.py CHANGED
@@ -2935,7 +2935,7 @@ class CPTPotentialFunction(PotentialFunction):
2935
2935
  return True
2936
2936
  else:
2937
2937
  # The requested tolerance is tighter than ensured.
2938
- # Need to use the default method
2938
+ # Need to use the default method.
2939
2939
  return super().is_cpt(tolerance)
2940
2940
 
2941
2941
  @property
@@ -2,7 +2,7 @@ from __future__ import annotations
2
2
 
3
3
  from dataclasses import dataclass
4
4
  from functools import partial
5
- from typing import Sequence, Optional, Tuple, List, Dict, Set
5
+ from typing import Sequence, Optional, Tuple, List, Dict, Set, assert_never
6
6
 
7
7
  from ck.circuit import CircuitNode, Circuit, VarNode, OpNode, ADD, MUL
8
8
  from ck.circuit_compiler import llvm_vm_compiler, CircuitCompiler
@@ -207,7 +207,7 @@ class MPEProgram(ProgramWithSlotmap):
207
207
  self._trace_var(child, states)
208
208
  return
209
209
  # No child value equaled the value for node! We should never get here
210
- assert False, 'not reached'
210
+ assert_never('not reached')
211
211
  elif node.symbol == MUL:
212
212
  # Recurse though each child node
213
213
  for child in node.args:
@@ -2,7 +2,6 @@ from typing import Optional, Sequence
2
2
 
3
3
  from ck.circuit import CircuitNode, TmpConst, Circuit
4
4
  from ck.circuit_compiler import CircuitCompiler
5
- from ck.circuit_compiler.llvm_compiler import DataType, DEFAULT_TYPE_INFO, compile_circuit
6
5
  from ck.circuit_compiler import DEFAULT_CIRCUIT_COMPILER
7
6
  from ck.pgm_circuit import PGMCircuit
8
7
  from ck.program import RawProgram
@@ -48,7 +47,7 @@ def compile_param_derivatives(
48
47
  pgm_circuit: PGMCircuit,
49
48
  self_multiply: bool = False,
50
49
  params_value: Optional[float | int] = 1,
51
- data_type: DataType = DEFAULT_TYPE_INFO,
50
+ compiler: CircuitCompiler = DEFAULT_CIRCUIT_COMPILER,
52
51
  ) -> RawProgram:
53
52
  """
54
53
  Compile the circuit to a program for computing the partial derivatives of the parameters.
@@ -56,14 +55,12 @@ def compile_param_derivatives(
56
55
 
57
56
  Typically, this will grow the circuit by the addition of circuit nodes to compute the derivatives.
58
57
 
59
- This uses the LLVM circuit compiler.
60
-
61
58
  Args:
62
59
  pgm_circuit: The circuit (and PGM) that will be compiled to a program.
63
60
  self_multiply: if true then each partial derivative df/dx will be multiplied by x.
64
61
  params_value: if not None, then circuit vars representing parameters will be temporarily
65
62
  set to this value for compiling the program. Default is 1.
66
- data_type: What data type to use for arithmetic calculations. Either a DataType member or TypeInfo.
63
+ compiler: function from circuit nodes to raw program.
67
64
  """
68
65
  top: CircuitNode = pgm_circuit.circuit_top
69
66
  circuit: Circuit = top.circuit
@@ -76,8 +73,8 @@ def compile_param_derivatives(
76
73
  if params_value is not None:
77
74
  with TmpConst(circuit) as tmp:
78
75
  tmp.set_const(param_vars, params_value)
79
- raw_program: RawProgram = compile_circuit(*derivatives, circuit=circuit, data_type=data_type)
76
+ raw_program: RawProgram = compiler(*derivatives, circuit=circuit)
80
77
  else:
81
- raw_program: RawProgram = compile_circuit(*derivatives, circuit=circuit, data_type=data_type)
78
+ raw_program: RawProgram = compiler(*derivatives, circuit=circuit)
82
79
 
83
80
  return raw_program
@@ -16,7 +16,6 @@ class NamedPGMCompiler(Enum):
16
16
  Wrapping in a tuple is needed otherwise Python erases the type of the member, which can cause problems.
17
17
  Each member itself is callable, confirming to the PGMCompiler protocol, delegating to the compiler function.
18
18
  """
19
- # @formatter:off
20
19
 
21
20
  VE_MIN_DEGREE = _get_compiler_algorithm(variable_elimination, 'MIN_DEGREE')
22
21
  VE_MIN_DEGREE_THEN_FILL = _get_compiler_algorithm(variable_elimination, 'MIN_DEGREE_THEN_FILL')
@@ -45,8 +44,6 @@ class NamedPGMCompiler(Enum):
45
44
 
46
45
  ACE = _get_compiler(ace)
47
46
 
48
- # @formatter:on
49
-
50
47
  def __call__(self, pgm: PGM, const_parameters: bool = True) -> PGMCircuit:
51
48
  """
52
49
  Each member of the enum is a PGMCompiler function.
@@ -13,7 +13,7 @@
13
13
  "/O2"
14
14
  ],
15
15
  "include_dirs": [
16
- "C:\\Users\\runneradmin\\AppData\\Local\\Temp\\build-env-40ndt3v7\\Lib\\site-packages\\numpy\\_core\\include"
16
+ "C:\\Users\\runneradmin\\AppData\\Local\\Temp\\build-env-0p_rjbh1\\Lib\\site-packages\\numpy\\_core\\include"
17
17
  ],
18
18
  "name": "ck.pgm_compiler.support.circuit_table._circuit_table_cy",
19
19
  "sources": [
@@ -295,7 +295,7 @@ class Clusters:
295
295
  Returns:
296
296
  the maximum `len(cluster)` over all clusters.
297
297
  """
298
- return max(len(cluster) for cluster in self.clusters)
298
+ return max((len(cluster) for cluster in self.clusters), default=0)
299
299
 
300
300
  def max_cluster_weighted_size(self, rv_log_sizes: Sequence[float]) -> float:
301
301
  """
@@ -303,13 +303,17 @@ class Clusters:
303
303
 
304
304
  Args:
305
305
  rv_log_sizes: is an array of random variable sizes, such that
306
- for a random variable `rv`, `rv_log_sizes[rv.idx] = log2(len(rv))`.
306
+ for a random variable `rv`, `rv_log_sizes[rv.idx] = log2(len(rv))`,
307
+ e.g., `self.pgm.rv_log_sizes`.
307
308
  Returns:
308
309
  the maximum `sum(rv_log_sizes[rv_idx] for rv_idx in cluster)` over all clusters.
309
310
  """
310
311
  return max(
311
- sum(rv_log_sizes[rv_idx] for rv_idx in cluster)
312
- for cluster in self.clusters
312
+ (
313
+ sum(rv_log_sizes[rv_idx] for rv_idx in cluster)
314
+ for cluster in self.clusters
315
+ ),
316
+ default=0
313
317
  )
314
318
 
315
319
  def eliminate(self, rv_index: int) -> None:
ck/program/raw_program.py CHANGED
@@ -23,14 +23,13 @@ class RawProgram:
23
23
 
24
24
  A `RawProgram` is a `Callable` with the signature:
25
25
 
26
-
27
26
  Fields:
28
27
  function: is a function of three ctypes arrays, returning nothing.
29
28
  dtype: the numpy data type of the array values.
30
29
  number_of_vars: the number of input values (first function argument).
31
30
  number_of_tmps: the number of working memory values (second function argument).
32
31
  number_of_results: the number of result values (third function argument).
33
- var_indices: maps the index of inputs (from 0 to self.number_of_vars - 1) to the index
32
+ var_indices: maps the index of inputs (from 0 to self.number_of_vars - 1) to the index
34
33
  of the corresponding circuit var.
35
34
  """
36
35
 
ck/utils/np_extras.py CHANGED
@@ -29,17 +29,17 @@ NDArrayNumeric = NDArray[DTypeNumeric]
29
29
 
30
30
 
31
31
  # Constants for maximum number of states.
32
- _MAX_STATES_8: int = 2 ** 8 - 1
33
- _MAX_STATES_16: int = 2 ** 16 - 1
34
- _MAX_STATES_32: int = 2 ** 32 - 1
35
- _MAX_STATES_64: int = 2 ** 64 - 1
32
+ _MAX_STATES_8: int = 2 ** 8
33
+ _MAX_STATES_16: int = 2 ** 16
34
+ _MAX_STATES_32: int = 2 ** 32
35
+ _MAX_STATES_64: int = 2 ** 64
36
36
 
37
37
 
38
38
  def dtype_for_number_of_states(number_of_states: int) -> DTypeStates:
39
39
  """
40
40
  Infer the numpy dtype required to store any state index of the given PGM.
41
41
  """
42
- # Infer the needed size of
42
+ # Infer the needed dtype required to hold a number of states
43
43
  if number_of_states <= _MAX_STATES_8:
44
44
  return np.uint8
45
45
  if number_of_states <= _MAX_STATES_16:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: compiled-knowledge
3
- Version: 4.0.0a20
3
+ Version: 4.0.0a22
4
4
  Summary: A Python package for compiling and querying discrete probabilistic graphical models.
5
5
  Author-email: Barry Drake <barry@compiledknowledge.org>
6
6
  License-Expression: MIT
@@ -1,29 +1,29 @@
1
1
  ck/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- ck/pgm.py,sha256=rbqgP-clfSvgpzUXxVjk_6SdM9neHmpChku6qpyeidk,120700
2
+ ck/pgm.py,sha256=Uwo2A4qEtgwmKkma1HOsozn837435zEN9JUByYlfe-w,120701
3
3
  ck/circuit/__init__.py,sha256=klUR7OVESf53-8Ho4f32clHFsR2SOz4XgwZzfDlms88,418
4
- ck/circuit/_circuit_cy.c,sha256=_SFZqQkT3ucLk9kWJiMF1aTgOSicH1Rz9os3UI5_NM8,1742373
5
- ck/circuit/_circuit_cy.cp313-win_amd64.pyd,sha256=2eChrqGPC7Z-98qhaRu81ZUfVqHLl99G_uF90Hz01Q8,243200
4
+ ck/circuit/_circuit_cy.c,sha256=zBsA_-1MY4IpO1kF4xOPtIjp8AkCCmbYSw7hm9NQxC4,1742373
5
+ ck/circuit/_circuit_cy.cp313-win_amd64.pyd,sha256=cySLdssmk5guJQxS0BVTnc6qjcnVqJHwN4k0ZuKacXY,241664
6
6
  ck/circuit/_circuit_cy.pxd,sha256=F1WU4KuX_knXQX-hwNKoHsoUK3fJLbLOxEnomWMJFpI,1057
7
7
  ck/circuit/_circuit_cy.pyx,sha256=RGfHGBj3XibLw4S5CC6FVnXOHjpzU0_aoVowqIY2qzA,27773
8
8
  ck/circuit/_circuit_py.py,sha256=vN8lg01RyjA_YUphjx1dr0Uj4ql4seczRcoCaH7ylAw,28341
9
9
  ck/circuit/tmp_const.py,sha256=dG9FuGfoAG5qjYG1rNwekqKiea_KmVfxHMTOgCPbBiQ,2372
10
10
  ck/circuit_compiler/__init__.py,sha256=T0Igyp5jPgnIXv4oRcIYhmsOdcNOb3L4Za6dK6eYk7g,132
11
11
  ck/circuit_compiler/circuit_compiler.py,sha256=8BLB8DUnPbpl5PXZsIopydPbItytdn2rzRfM2U1EC84,1018
12
- ck/circuit_compiler/interpret_compiler.py,sha256=Vlu4VnZ_VWGoBb4yx6wuJOlhJ2nGVhkzQpIyJ8xyjbI,7350
13
- ck/circuit_compiler/llvm_compiler.py,sha256=ejeNPkO5Og2FyjjyA5JAexxUl1f8IJ6mwU5Ng5EafAA,14009
12
+ ck/circuit_compiler/interpret_compiler.py,sha256=7PjtEFNR0JMw56XaYP9IZ5ZNZTTLYCUUDiMDj7cN5f8,7373
13
+ ck/circuit_compiler/llvm_compiler.py,sha256=6RHUCVWCOgt3ZNyjRTl2Z2npYJMWyAFJVAIc5SAx2mY,14023
14
14
  ck/circuit_compiler/llvm_vm_compiler.py,sha256=I46_XV5FrClDKO06zIjn8T3ME5XQ9RYJ_1aAE8e_YzM,21873
15
15
  ck/circuit_compiler/named_circuit_compilers.py,sha256=snlD3JnhAZC-atKpf5GD0v4CGdvj2_ZhCZ3O-tsxzxc,2284
16
16
  ck/circuit_compiler/cython_vm_compiler/__init__.py,sha256=pEAwTleuZgdYhTAQMea2f9YsFK54eoNbZSbrWkW8aeE,49
17
- ck/circuit_compiler/cython_vm_compiler/_compiler.c,sha256=JJbI6uLTr78-PCExchQcXqWuqmuRBprWLMtqxEkWe9Y,870540
18
- ck/circuit_compiler/cython_vm_compiler/_compiler.cp313-win_amd64.pyd,sha256=lNI5lm-fretlZTvj4cYx5LdrS2poauMPvNyt_6umuDs,104448
17
+ ck/circuit_compiler/cython_vm_compiler/_compiler.c,sha256=ZjXAvh7Ke6rypgYvLacdh67fVIVUl2Pnp-84zRYiEfo,870540
18
+ ck/circuit_compiler/cython_vm_compiler/_compiler.cp313-win_amd64.pyd,sha256=HDIcWB1vUPVs-q8bImin2cwzuBU9MPSZTxmpsPytOEo,103424
19
19
  ck/circuit_compiler/cython_vm_compiler/_compiler.pyx,sha256=QS6FG5z-ay9fnUTCMwtJm89I3QpfY6RqS874zHvZrBA,13225
20
20
  ck/circuit_compiler/cython_vm_compiler/cython_vm_compiler.py,sha256=WywW6uhoyP-U5hWdF1amsE8fhbP9LbDtWTu2wVFkR2k,4066
21
21
  ck/circuit_compiler/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
22
  ck/circuit_compiler/support/input_vars.py,sha256=x6krN6sW9A-vZTteY4M4on_0vS4ChaaCcmnXcnQ4y0s,4812
23
23
  ck/circuit_compiler/support/llvm_ir_function.py,sha256=7SoYEQiBS2GHFknw0raH0ouJyBQmYp-ZydJVEXVo0Uw,7779
24
24
  ck/circuit_compiler/support/circuit_analyser/__init__.py,sha256=RbyIObAAb-w0Ky4fB198xAfxTh2doquN9ez68SZSZgo,536
25
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.c,sha256=Htzq2L2ALSRW9dqcUACxhv2Jd9TahH4K91iT8x2Zmo4,448751
26
- ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.cp313-win_amd64.pyd,sha256=ZeZFgtVtQ9hgeECK1vI7um4Z16laygnKyAEB0mdhrAA,53248
25
+ ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.c,sha256=uVBuaWzBVkkYIIkVGikKWR839DGW9ytriP6a2yEPEFQ,448751
26
+ ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.cp313-win_amd64.pyd,sha256=aCvbEhlHP5O3PLED2NamkUzVarP5Exz7r6egCMz17pM,53760
27
27
  ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_cy.pyx,sha256=ctDOHOjnUhdsR_XHBrgchFVTImLhsEUjU3cqkP-GdF8,3331
28
28
  ck/circuit_compiler/support/circuit_analyser/_circuit_analyser_py.py,sha256=eWjc2B946LeSzcGa9PyI4XQvlx_B1KPEiQuM6OOFjjQ,3086
29
29
  ck/example/__init__.py,sha256=BXVxvTcl3tqgai-xJiGQIaG_ChlpPRdfWg985MQ7dwM,1744
@@ -69,30 +69,30 @@ ck/in_out/render_net.py,sha256=LpQYAo_tF45vMIcHW1Ir5Zd_Ot69SPAK-e1Tl_6Ygo0,5147
69
69
  ck/in_out/render_pomegranate.py,sha256=gGvXyX9vOoilGIIL3rsMB07gERMU-12XPsttfSb4xLI,5764
70
70
  ck/pgm_circuit/__init__.py,sha256=B0CCjNMnPzrd0YiOEFdK4JzmRCvFIGJi3RJQ5Vg6fqA,37
71
71
  ck/pgm_circuit/marginals_program.py,sha256=DUvSND3ozQuBCZcmIsgwZ4w_IWCVV7O31Pm4PJ7ZDok,14786
72
- ck/pgm_circuit/mpe_program.py,sha256=IjHPZv2xKXZGp_FR1QFJgJpMhLKdajLgV33R4DEbn4o,10231
72
+ ck/pgm_circuit/mpe_program.py,sha256=sKj1hoxN3dTYOegj6tf5fV7KLHuqJ9FaP3tRK3HM4Xg,10245
73
73
  ck/pgm_circuit/pgm_circuit.py,sha256=3vKOh2gFGyB_PhfQgviCQGXv1t4dbawBL89sjm4-SPA,3287
74
74
  ck/pgm_circuit/program_with_slotmap.py,sha256=boS8Y1X60F-_pTM3wFyC4oP9jc-5zDc8Iv4vn7JUJWM,8959
75
75
  ck/pgm_circuit/slot_map.py,sha256=T4nBweoiivEdBDhYZ6GWpOXqSusRbp3vrSbCTyP1qpI,857
76
76
  ck/pgm_circuit/target_marginals_program.py,sha256=x4YQM-hUQRo2OLxodKJVOAKxqNlxmiDl9nGbbknypkY,3768
77
77
  ck/pgm_circuit/wmc_program.py,sha256=WtABU74FOCCJuKRCoDL4CyZ4CJXFmt9RSxiNNHsOhRY,12699
78
78
  ck/pgm_circuit/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- ck/pgm_circuit/support/compile_circuit.py,sha256=RuYzDCRpfXZcY96sSW8v7x6ev9ScQ4IZkVqMdJUoMp8,3484
79
+ ck/pgm_circuit/support/compile_circuit.py,sha256=krsTlZxLk_RHZL0qoRVAjyW78Zk2HZi_MrurzZIfa6Y,3259
80
80
  ck/pgm_compiler/__init__.py,sha256=XCK1AWBBB9UYi6kbFnxMFzBL9a25EWfHnz_yn3ZKYuM,112
81
81
  ck/pgm_compiler/factor_elimination.py,sha256=6iMh_NdOQh4D5cuo8q1y7yUuj3glnM9I0OJ9vlJAGqU,13807
82
- ck/pgm_compiler/named_pgm_compilers.py,sha256=kYMomYlsW7xbL0hzTWQb41EckkugaCfuYHUJqbEWBBs,3421
82
+ ck/pgm_compiler/named_pgm_compilers.py,sha256=sI-dwF7mht6aEuVfsN3sIO_4oH7RrjIt5x9ZlBwVQys,3376
83
83
  ck/pgm_compiler/pgm_compiler.py,sha256=F44PtlwqMG0FS6KzOYKZuyZT6olWAVtBH-QXZPzz4O8,616
84
84
  ck/pgm_compiler/recursive_conditioning.py,sha256=U0NdIns8yLQtYR_MOf1w__CChpOMDlgRCL2nFRhtnzU,7936
85
85
  ck/pgm_compiler/variable_elimination.py,sha256=irAZ5b0vRGL_WGq7UrfQpMXhYBZO5YI2U_jf1-YV92Q,3547
86
86
  ck/pgm_compiler/ace/__init__.py,sha256=Rud883H68yz2Dw-NkiiTPC6rmii6hHKMHbtiU6_liug,97
87
87
  ck/pgm_compiler/ace/ace.py,sha256=iyDacqArXW1cVP6tBabxRmmLWIHabuPkCoq2tWBm2ww,10397
88
88
  ck/pgm_compiler/support/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
- ck/pgm_compiler/support/clusters.py,sha256=7jsZfPqv29vZNxmtiHBCBo3mEfvLQ_ejYh69M_d-nmo,21381
89
+ ck/pgm_compiler/support/clusters.py,sha256=BzMmPWXBEXPvp9dZAuzA19Gbt4j9d-tdQuFbfwXD6MU,21504
90
90
  ck/pgm_compiler/support/factor_tables.py,sha256=tV9qE2zC8iwEQxTuXE6qiE6lmMpz4-Vc80_w5woo1tk,15556
91
91
  ck/pgm_compiler/support/join_tree.py,sha256=OGAuZVHzT0i4e6TJ03dOM7e3gbpuW9AyjZKvSBvKvJA,12894
92
92
  ck/pgm_compiler/support/named_compiler_maker.py,sha256=g2MLnlkWXkISHL6dh23EY53SptTo7-itfuZogSpMdB8,1420
93
93
  ck/pgm_compiler/support/circuit_table/__init__.py,sha256=yJ05NvuNE9j0E_QnjDzHYfLqcHn5TdOleEpG3wSRgXQ,579
94
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy.c,sha256=lyOQ3-cE9Hm68XiVGnBFBL9u7F1MzG0k_3kU1rw-ZJM,730350
95
- ck/pgm_compiler/support/circuit_table/_circuit_table_cy.cp313-win_amd64.pyd,sha256=HXjTuCcBzONjzHzTJA4JiiVJ6pwk1bFvjIkTv8rHkfg,95744
94
+ ck/pgm_compiler/support/circuit_table/_circuit_table_cy.c,sha256=4wnwUtsxyHGV0YSTzWOZn6bux4RhaK_zPdZxBY8C9io,730350
95
+ ck/pgm_compiler/support/circuit_table/_circuit_table_cy.cp313-win_amd64.pyd,sha256=SsPL6yCcPZdO9letN0ySENjPglta3CIZXuH3cvFZ8RA,96256
96
96
  ck/pgm_compiler/support/circuit_table/_circuit_table_cy.pyx,sha256=rVO1yxjZmZ6yv5s0zKq4Ji9WYrDuYTZsRG_zeF1_1xE,12015
97
97
  ck/pgm_compiler/support/circuit_table/_circuit_table_py.py,sha256=h6xPYGBSy6XHQBFLPD2D1-V7Kiw9utY68nWrcGRMEg4,11287
98
98
  ck/probability/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -102,7 +102,7 @@ ck/probability/probability_space.py,sha256=itv3dNEpSTLhKg6JCNhe7Iy6n9MKWqeKO4RxK
102
102
  ck/program/__init__.py,sha256=Ss9-0eqsGxCGloD6liH-0iqBG5Q3vPRF4XCw2hkDJ0M,110
103
103
  ck/program/program.py,sha256=gDJ5Q2kXZuaoHboa9yNTg0tQH9S-Gmw0BRx6PPV28pU,4184
104
104
  ck/program/program_buffer.py,sha256=1fiUcT7sqyr4vu8jXzK3ZsrgURFhWMdm6hr2BeS9ONA,5665
105
- ck/program/raw_program.py,sha256=1HA7k4V34LQg_KgYWs6XewHrtNiTRuL-ejNnki7oTho,2626
105
+ ck/program/raw_program.py,sha256=94D74Vz5Hu8p3JYNKT9kflXHuj0jscNBoX4O5Ug7G8A,2623
106
106
  ck/sampling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
107
107
  ck/sampling/forward_sampler.py,sha256=pTtpaH_ONH67G4P-aJ1p8YZSaXr4TTD6pj3ZEI2y7KM,8348
108
108
  ck/sampling/marginals_direct_sampler.py,sha256=p1jDr1stG2Hjay3D8hILezW-5YZTX1p3odUcJDAI-OQ,4466
@@ -118,7 +118,7 @@ ck/utils/iter_extras.py,sha256=QNd3mJxPsKN0Wg12K_Iuefto5A2Vv9leuMvymAdt4uo,4479
118
118
  ck/utils/local_config.py,sha256=-oTKvKCpm29JeHEhV1_qLC5fMS523unDzXr0VYE3M0U,9535
119
119
  ck/utils/map_list.py,sha256=T2OpjI7eDgC4geCtW_FsEr6ryiePOnKZwfDahB63zfA,3847
120
120
  ck/utils/map_set.py,sha256=BLu9BO3FCtzZlZ9MfP9STtIdQ4Me8-QKdwB7o15y7f8,3809
121
- ck/utils/np_extras.py,sha256=J5KIQJX3C79ltAfKKYc0B0HI43iyuUQxLI9HZ9FiORI,1734
121
+ ck/utils/np_extras.py,sha256=Dt9Y-afUYIf_z5PBQOzh22pg8jRt-DKm2n5jJ6APIdA,1752
122
122
  ck/utils/random_extras.py,sha256=U9ODD24FFQL1un4A_qhXQ4bH9OwGGC035ySzyWp1PVU,1860
123
123
  ck/utils/tmp_dir.py,sha256=dyxI5j1SC1DJzZpqq0TT9kK8EKawVoZSv69TClW2O6Q,2668
124
124
  ck_demos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -171,8 +171,8 @@ ck_demos/utils/compare.py,sha256=Bwjpflevl4nusfA0zp96rInaVKFGuhC5Xv7HzA1Fobk,508
171
171
  ck_demos/utils/convert_network.py,sha256=TSKj8q7L7J5rhrvwjaDkdYZ0Sg8vV5FRL_vCanX1CQw,1363
172
172
  ck_demos/utils/sample_model.py,sha256=in-Nlv-iuNIu6y9fDuMyo7nzgimBuTAnCWcpnVqvqDQ,8839
173
173
  ck_demos/utils/stop_watch.py,sha256=VzXHRWx0V8vPSD-bLgLlEYkCkR2FA0-KmM_pfKx-Pxo,13205
174
- compiled_knowledge-4.0.0a20.dist-info/licenses/LICENSE.txt,sha256=uMYx7tmroEKNASizbCOwPveMQsD5UErLDC1_SANmNn8,1089
175
- compiled_knowledge-4.0.0a20.dist-info/METADATA,sha256=kyWVLfWf8kiKgFgK81WkYolpZpAU1GDwjrQjxCbWmQ0,1838
176
- compiled_knowledge-4.0.0a20.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
177
- compiled_knowledge-4.0.0a20.dist-info/top_level.txt,sha256=Cf8DAfd2vcnLiA7HlxoduOzV0Q-8surE3kzX8P9qdks,12
178
- compiled_knowledge-4.0.0a20.dist-info/RECORD,,
174
+ compiled_knowledge-4.0.0a22.dist-info/licenses/LICENSE.txt,sha256=uMYx7tmroEKNASizbCOwPveMQsD5UErLDC1_SANmNn8,1089
175
+ compiled_knowledge-4.0.0a22.dist-info/METADATA,sha256=eJdp11Ps62kBb4jFBn6-ROz4TIXeWGBJFDoq49vzO7g,1838
176
+ compiled_knowledge-4.0.0a22.dist-info/WHEEL,sha256=qV0EIPljj1XC_vuSatRWjn02nZIz3N1t8jsZz7HBr2U,101
177
+ compiled_knowledge-4.0.0a22.dist-info/top_level.txt,sha256=Cf8DAfd2vcnLiA7HlxoduOzV0Q-8surE3kzX8P9qdks,12
178
+ compiled_knowledge-4.0.0a22.dist-info/RECORD,,