classiq 0.76.0__py3-none-any.whl → 0.77.0__py3-none-any.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.
- classiq/applications/chemistry/chemistry_model_constructor.py +7 -6
- classiq/applications/combinatorial_optimization/combinatorial_optimization_model_constructor.py +9 -1
- classiq/applications/combinatorial_optimization/combinatorial_problem.py +4 -3
- classiq/interface/_version.py +1 -1
- classiq/interface/generator/expressions/proxies/quantum/qmod_qarray_proxy.py +6 -15
- classiq/interface/generator/expressions/proxies/quantum/qmod_qscalar_proxy.py +14 -5
- classiq/interface/generator/expressions/proxies/quantum/qmod_sized_proxy.py +5 -3
- classiq/interface/model/handle_binding.py +8 -0
- classiq/interface/model/model.py +3 -6
- classiq/interface/model/quantum_function_call.py +31 -1
- classiq/interface/model/quantum_statement.py +14 -1
- classiq/interface/source_reference.py +7 -2
- classiq/model_expansions/capturing/captured_vars.py +16 -6
- classiq/model_expansions/evaluators/arg_type_match.py +2 -2
- classiq/model_expansions/evaluators/argument_types.py +3 -3
- classiq/model_expansions/evaluators/classical_expression.py +9 -9
- classiq/model_expansions/evaluators/parameter_types.py +19 -11
- classiq/model_expansions/expression_evaluator.py +20 -11
- classiq/model_expansions/function_builder.py +45 -0
- classiq/model_expansions/generative_functions.py +1 -1
- classiq/model_expansions/interpreters/base_interpreter.py +15 -1
- classiq/model_expansions/interpreters/frontend_generative_interpreter.py +4 -3
- classiq/model_expansions/interpreters/generative_interpreter.py +4 -4
- classiq/model_expansions/quantum_operations/allocate.py +2 -2
- classiq/model_expansions/quantum_operations/assignment_result_processor.py +3 -1
- classiq/model_expansions/quantum_operations/call_emitter.py +21 -11
- classiq/model_expansions/quantum_operations/emitter.py +1 -6
- classiq/model_expansions/scope.py +53 -3
- classiq/model_expansions/transformers/model_renamer.py +2 -2
- classiq/model_expansions/visitors/symbolic_param_inference.py +3 -3
- classiq/open_library/functions/lookup_table.py +1 -1
- classiq/open_library/functions/state_preparation.py +1 -1
- classiq/qmod/create_model_function.py +21 -3
- classiq/qmod/global_declarative_switch.py +19 -0
- classiq/qmod/native/pretty_printer.py +4 -0
- classiq/qmod/pretty_print/pretty_printer.py +4 -0
- classiq/qmod/qfunc.py +31 -23
- classiq/qmod/quantum_expandable.py +29 -1
- classiq/qmod/quantum_function.py +26 -19
- classiq/qmod/write_qmod.py +36 -10
- classiq/synthesis.py +7 -6
- {classiq-0.76.0.dist-info → classiq-0.77.0.dist-info}/METADATA +1 -1
- {classiq-0.76.0.dist-info → classiq-0.77.0.dist-info}/RECORD +44 -43
- {classiq-0.76.0.dist-info → classiq-0.77.0.dist-info}/WHEEL +0 -0
@@ -28,6 +28,7 @@ from classiq.interface.generator.functions.concrete_types import (
|
|
28
28
|
from classiq.interface.model.classical_parameter_declaration import (
|
29
29
|
AnonClassicalParameterDeclaration,
|
30
30
|
)
|
31
|
+
from classiq.interface.model.handle_binding import GeneralHandle, HandlesList
|
31
32
|
from classiq.interface.model.port_declaration import AnonPortDeclaration
|
32
33
|
from classiq.interface.model.quantum_function_call import (
|
33
34
|
ArgValue,
|
@@ -52,6 +53,7 @@ from classiq.interface.model.variable_declaration_statement import (
|
|
52
53
|
from classiq.interface.source_reference import SourceReference
|
53
54
|
|
54
55
|
from classiq.qmod.generative import generative_mode_context, is_generative_mode
|
56
|
+
from classiq.qmod.global_declarative_switch import get_global_declarative_switch
|
55
57
|
from classiq.qmod.model_state_container import QMODULE, ModelStateContainer
|
56
58
|
from classiq.qmod.qmod_constant import QConstant
|
57
59
|
from classiq.qmod.qmod_parameter import (
|
@@ -84,6 +86,11 @@ class QExpandable(QCallable, QExpandableInterface, ABC):
|
|
84
86
|
self._py_callable: Callable = py_callable
|
85
87
|
self._body: list[QuantumStatement] = list()
|
86
88
|
|
89
|
+
def __eq__(self, other: Any) -> bool:
|
90
|
+
return (
|
91
|
+
isinstance(other, QExpandable) and self._py_callable is other._py_callable
|
92
|
+
)
|
93
|
+
|
87
94
|
@property
|
88
95
|
def body(self) -> list[QuantumStatement]:
|
89
96
|
return self._body
|
@@ -317,8 +324,10 @@ def prepare_arg(
|
|
317
324
|
def prepare_arg(
|
318
325
|
arg_decl: AnonPositionalArg, val: Any, func_name: Optional[str], param_name: str
|
319
326
|
) -> ArgValue:
|
320
|
-
from classiq.qmod.quantum_function import BaseQFunc, GenerativeQFunc
|
327
|
+
from classiq.qmod.quantum_function import BaseQFunc, GenerativeQFunc, QFunc
|
321
328
|
|
329
|
+
if get_global_declarative_switch() and isinstance(val, GenerativeQFunc):
|
330
|
+
val = QFunc(val._py_callable)
|
322
331
|
if isinstance(val, BaseQFunc):
|
323
332
|
val.add_function_dependencies()
|
324
333
|
if isinstance(val, GenerativeQFunc):
|
@@ -330,6 +339,9 @@ def prepare_arg(
|
|
330
339
|
_validate_classical_arg(val, arg_decl, func_name)
|
331
340
|
return Expression(expr=qmod_val_to_expr_str(val))
|
332
341
|
elif isinstance(arg_decl, AnonPortDeclaration):
|
342
|
+
handles_list = _try_preparing_handles_list(val)
|
343
|
+
if handles_list is not None:
|
344
|
+
return handles_list
|
333
345
|
if not isinstance(val, QVar):
|
334
346
|
func_name_message = (
|
335
347
|
"" if func_name is None else f" of function {func_name!r}"
|
@@ -505,3 +517,19 @@ def _is_legal_iterable_element(arg: Any) -> bool:
|
|
505
517
|
if isinstance(arg, Iterable):
|
506
518
|
return all(_is_legal_iterable_element(e) for e in arg)
|
507
519
|
return True
|
520
|
+
|
521
|
+
|
522
|
+
def _try_preparing_handles_list(val: Any) -> Optional[HandlesList]:
|
523
|
+
if not isinstance(val, list):
|
524
|
+
return None
|
525
|
+
items = [
|
526
|
+
(
|
527
|
+
item.get_handle_binding()
|
528
|
+
if isinstance(item, QVar)
|
529
|
+
else _try_preparing_handles_list(item)
|
530
|
+
)
|
531
|
+
for item in val
|
532
|
+
]
|
533
|
+
if any(item is None for item in items):
|
534
|
+
return None
|
535
|
+
return HandlesList(handles=cast(list[GeneralHandle], items))
|
classiq/qmod/quantum_function.py
CHANGED
@@ -26,6 +26,7 @@ from classiq.qmod.classical_function import CFunc
|
|
26
26
|
from classiq.qmod.cparam import CParamAbstract
|
27
27
|
from classiq.qmod.declaration_inferrer import infer_func_decl, is_qvar
|
28
28
|
from classiq.qmod.generative import set_frontend_interpreter
|
29
|
+
from classiq.qmod.global_declarative_switch import get_global_declarative_switch
|
29
30
|
from classiq.qmod.qmod_constant import QConstant
|
30
31
|
from classiq.qmod.qmod_parameter import CArray
|
31
32
|
from classiq.qmod.quantum_callable import QCallable, QCallableList
|
@@ -49,6 +50,18 @@ class BaseQFunc(QExpandable):
|
|
49
50
|
def func_decl(self) -> NamedParamsQuantumFunctionDeclaration:
|
50
51
|
raise NotImplementedError
|
51
52
|
|
53
|
+
@property
|
54
|
+
def pure_decl(self) -> NamedParamsQuantumFunctionDeclaration:
|
55
|
+
if type(self.func_decl) is NamedParamsQuantumFunctionDeclaration:
|
56
|
+
return self.func_decl
|
57
|
+
return NamedParamsQuantumFunctionDeclaration(
|
58
|
+
**{
|
59
|
+
k: v
|
60
|
+
for k, v in self.func_decl.model_dump().items()
|
61
|
+
if k in NamedParamsQuantumFunctionDeclaration.model_fields
|
62
|
+
}
|
63
|
+
)
|
64
|
+
|
52
65
|
@property
|
53
66
|
def _has_inputs(self) -> bool:
|
54
67
|
return any(
|
@@ -90,18 +103,6 @@ class QFunc(BaseQFunc):
|
|
90
103
|
super().__init__(py_callable, compilation_metadata)
|
91
104
|
self.compilation_metadata: Optional[CompilationMetadata] = None
|
92
105
|
|
93
|
-
@property
|
94
|
-
def pure_decl(self) -> NamedParamsQuantumFunctionDeclaration:
|
95
|
-
if type(self.func_decl) is NamedParamsQuantumFunctionDeclaration:
|
96
|
-
return self.func_decl
|
97
|
-
return NamedParamsQuantumFunctionDeclaration(
|
98
|
-
**{
|
99
|
-
k: v
|
100
|
-
for k, v in self.func_decl.model_dump().items()
|
101
|
-
if k in NamedParamsQuantumFunctionDeclaration.model_fields
|
102
|
-
}
|
103
|
-
)
|
104
|
-
|
105
106
|
@property
|
106
107
|
def func_decl(self) -> NamedParamsQuantumFunctionDeclaration:
|
107
108
|
name = self._py_callable.__name__
|
@@ -142,7 +143,10 @@ class QFunc(BaseQFunc):
|
|
142
143
|
functions_compilation_metadata=self._qmodule.functions_compilation_metadata,
|
143
144
|
**{key: value for key, value in model_extra_settings if value},
|
144
145
|
)
|
145
|
-
if
|
146
|
+
if (
|
147
|
+
not get_global_declarative_switch()
|
148
|
+
and len(self._qmodule.generative_functions) > 0
|
149
|
+
):
|
146
150
|
return self._create_generative_model(model)
|
147
151
|
return model
|
148
152
|
|
@@ -233,12 +237,6 @@ class ExternalQFunc(QTerminalCallable):
|
|
233
237
|
def pure_decl(self) -> NamedParamsQuantumFunctionDeclaration:
|
234
238
|
return self.func_decl
|
235
239
|
|
236
|
-
def get_implementation(self) -> NativeFunctionDefinition:
|
237
|
-
model = QFunc(self._py_callable).create_model()
|
238
|
-
return [
|
239
|
-
func for func in model.functions if func.name == self._py_callable.__name__
|
240
|
-
][0]
|
241
|
-
|
242
240
|
|
243
241
|
class GenerativeQFunc(BaseQFunc):
|
244
242
|
FRAME_DEPTH = 3
|
@@ -262,6 +260,8 @@ class GenerativeQFunc(BaseQFunc):
|
|
262
260
|
return self._inferred_func_decl
|
263
261
|
|
264
262
|
def __call__(self, *args: Any, **kwargs: Any) -> None:
|
263
|
+
if get_global_declarative_switch():
|
264
|
+
return QFunc(self._py_callable)(*args, **kwargs)
|
265
265
|
if self.func_decl.name not in self._qmodule.generative_functions:
|
266
266
|
self._qmodule.generative_functions[self.func_decl.name] = self
|
267
267
|
if self._func_decl is None:
|
@@ -277,6 +277,13 @@ class GenerativeQFunc(BaseQFunc):
|
|
277
277
|
preferences: Optional[Preferences] = None,
|
278
278
|
classical_execution_function: Optional[CFunc] = None,
|
279
279
|
) -> Model:
|
280
|
+
if get_global_declarative_switch():
|
281
|
+
return QFunc(self._py_callable).create_model(
|
282
|
+
constraints,
|
283
|
+
execution_preferences,
|
284
|
+
preferences,
|
285
|
+
classical_execution_function,
|
286
|
+
)
|
280
287
|
self._qmodule.reset()
|
281
288
|
if self.func_decl.name == MAIN_FUNCTION_NAME:
|
282
289
|
validate_main_function(self.func_decl)
|
classiq/qmod/write_qmod.py
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
import json
|
2
2
|
from pathlib import Path
|
3
|
-
from typing import
|
3
|
+
from typing import Optional, Union
|
4
4
|
|
5
5
|
from classiq.interface.model.model import Model, SerializedModel
|
6
6
|
|
7
|
+
from classiq.qmod.global_declarative_switch import set_global_declarative_switch
|
7
8
|
from classiq.qmod.native.pretty_printer import DSLPrettyPrinter
|
8
9
|
from classiq.qmod.quantum_function import GenerativeQFunc, QFunc
|
9
10
|
from classiq.qmod.utilities import DEFAULT_DECIMAL_PRECISION
|
@@ -17,8 +18,7 @@ def write_qmod(
|
|
17
18
|
name: str,
|
18
19
|
directory: Optional[Path] = None,
|
19
20
|
decimal_precision: int = DEFAULT_DECIMAL_PRECISION,
|
20
|
-
|
21
|
-
**kwargs: Any,
|
21
|
+
symbolic_only: bool = True,
|
22
22
|
) -> None:
|
23
23
|
"""
|
24
24
|
Creates a native Qmod file from a serialized model and outputs the synthesis options (Preferences and Constraints) to a file.
|
@@ -29,20 +29,15 @@ def write_qmod(
|
|
29
29
|
name: The name to save the file by.
|
30
30
|
directory: The directory to save the files in. If None, the current working directory is used.
|
31
31
|
decimal_precision: The number of decimal places to use for numbers, set to 4 by default.
|
32
|
-
|
33
|
-
kwargs: (placeholder)
|
32
|
+
symbolic_only: If True keep function definitions un-expanded and symbolic (note that Qmod functions with parameters of Python types are not supported in this mode)
|
34
33
|
|
35
34
|
Returns:
|
36
35
|
None
|
37
36
|
"""
|
38
|
-
|
39
|
-
model_obj = model.create_model()
|
40
|
-
else:
|
41
|
-
model_obj = Model.model_validate_json(model)
|
37
|
+
model_obj = prepare_write_qmod_model(model, symbolic_only)
|
42
38
|
pretty_printed_model = DSLPrettyPrinter(decimal_precision=decimal_precision).visit(
|
43
39
|
model_obj
|
44
40
|
)
|
45
|
-
|
46
41
|
synthesis_options = model_obj.model_dump(
|
47
42
|
include={"constraints", "preferences"}, exclude_none=True
|
48
43
|
)
|
@@ -58,3 +53,34 @@ def write_qmod(
|
|
58
53
|
native_qmod_path = directory / native_qmod_path
|
59
54
|
|
60
55
|
native_qmod_path.write_text(pretty_printed_model)
|
56
|
+
|
57
|
+
|
58
|
+
def prepare_write_qmod_model(
|
59
|
+
model: Union[SerializedModel, QFunc, GenerativeQFunc], symbolic_only: bool
|
60
|
+
) -> Model:
|
61
|
+
if isinstance(model, str) and hasattr(model, "entry_point") and symbolic_only:
|
62
|
+
model_obj = Model.model_validate_json(model)
|
63
|
+
with set_global_declarative_switch():
|
64
|
+
dec_model_obj = model.entry_point.create_model(
|
65
|
+
constraints=model_obj.constraints,
|
66
|
+
execution_preferences=model_obj.execution_preferences,
|
67
|
+
preferences=model_obj.preferences,
|
68
|
+
)
|
69
|
+
dec_constant_names = {const.name for const in dec_model_obj.constants}
|
70
|
+
all_constants = dec_model_obj.constants + [
|
71
|
+
const
|
72
|
+
for const in model_obj.constants
|
73
|
+
if const.name not in dec_constant_names
|
74
|
+
]
|
75
|
+
return dec_model_obj.model_copy(
|
76
|
+
update={
|
77
|
+
"constants": all_constants,
|
78
|
+
"classical_execution_code": model_obj.classical_execution_code,
|
79
|
+
}
|
80
|
+
)
|
81
|
+
if isinstance(model, (QFunc, GenerativeQFunc)):
|
82
|
+
if symbolic_only:
|
83
|
+
with set_global_declarative_switch():
|
84
|
+
return model.create_model()
|
85
|
+
return model.create_model()
|
86
|
+
return Model.model_validate_json(model)
|
classiq/synthesis.py
CHANGED
@@ -10,6 +10,7 @@ from classiq.interface.model.model import MAIN_FUNCTION_NAME, Model, SerializedM
|
|
10
10
|
from classiq import QuantumProgram
|
11
11
|
from classiq._internals import async_utils
|
12
12
|
from classiq._internals.api_wrapper import ApiWrapper
|
13
|
+
from classiq.qmod.create_model_function import add_entry_point
|
13
14
|
from classiq.qmod.quantum_function import BaseQFunc
|
14
15
|
|
15
16
|
SerializedQuantumProgram = QuantumProgram
|
@@ -116,7 +117,7 @@ def set_preferences(
|
|
116
117
|
|
117
118
|
model = Model.model_validate_json(serialized_model)
|
118
119
|
model.preferences = preferences
|
119
|
-
return model.get_model()
|
120
|
+
return add_entry_point(model.get_model(), serialized_model)
|
120
121
|
|
121
122
|
|
122
123
|
def update_preferences(
|
@@ -136,7 +137,7 @@ def update_preferences(
|
|
136
137
|
|
137
138
|
for key, value in kwargs.items():
|
138
139
|
setattr(model.preferences, key, value)
|
139
|
-
return model.get_model()
|
140
|
+
return add_entry_point(model.get_model(), serialized_model)
|
140
141
|
|
141
142
|
|
142
143
|
def set_constraints(
|
@@ -164,7 +165,7 @@ def set_constraints(
|
|
164
165
|
|
165
166
|
model = Model.model_validate_json(serialized_model)
|
166
167
|
model.constraints = constraints
|
167
|
-
return model.get_model()
|
168
|
+
return add_entry_point(model.get_model(), serialized_model)
|
168
169
|
|
169
170
|
|
170
171
|
def update_constraints(
|
@@ -184,7 +185,7 @@ def update_constraints(
|
|
184
185
|
|
185
186
|
for key, value in kwargs.items():
|
186
187
|
setattr(model.constraints, key, value)
|
187
|
-
return model.get_model()
|
188
|
+
return add_entry_point(model.get_model(), serialized_model)
|
188
189
|
|
189
190
|
|
190
191
|
def set_execution_preferences(
|
@@ -213,7 +214,7 @@ def set_execution_preferences(
|
|
213
214
|
|
214
215
|
model = Model.model_validate_json(serialized_model)
|
215
216
|
model.execution_preferences = execution_preferences
|
216
|
-
return model.get_model()
|
217
|
+
return add_entry_point(model.get_model(), serialized_model)
|
217
218
|
|
218
219
|
|
219
220
|
def update_execution_preferences(
|
@@ -234,7 +235,7 @@ def update_execution_preferences(
|
|
234
235
|
for key, value in kwargs.items():
|
235
236
|
setattr(model.execution_preferences, key, value)
|
236
237
|
|
237
|
-
return model.get_model()
|
238
|
+
return add_entry_point(model.get_model(), serialized_model)
|
238
239
|
|
239
240
|
|
240
241
|
__all__ = [
|
@@ -28,7 +28,7 @@ classiq/applications/__init__.py,sha256=gb2dQI2ZuiU3c77hUAAY0D-BIW4YLD-9W5dKzOmM
|
|
28
28
|
classiq/applications/chemistry/__init__.py,sha256=_OGx8E8znq8jpjnHCSj89NpjxkcFZZ7endS5JLCybBM,1094
|
29
29
|
classiq/applications/chemistry/ansatz_parameters.py,sha256=2YXfTOGrsCc6xMpLiGhnIQfI6iBXvlWOS9DY862fgJc,673
|
30
30
|
classiq/applications/chemistry/chemistry_execution_parameters.py,sha256=bqzXBwEl56a7OGKNk_aV2MGPxdMebwG7bIUqVJQyJQ0,505
|
31
|
-
classiq/applications/chemistry/chemistry_model_constructor.py,sha256=
|
31
|
+
classiq/applications/chemistry/chemistry_model_constructor.py,sha256=G_5DgktKW6fpW9tzBet7m0-6cN2vBp6IWuz0u7aGscg,17377
|
32
32
|
classiq/applications/chemistry/ground_state_problem.py,sha256=TEh3VrIplI8HinBCglkUv33Obw-_37xWhiRYKmedB2w,1640
|
33
33
|
classiq/applications/combinatorial_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
34
|
classiq/applications/combinatorial_helpers/allowed_constraints.py,sha256=5qo_381XjOJNt5vl16phVT9wQ2iTj4FCFTW5V89X8WQ,718
|
@@ -57,8 +57,8 @@ classiq/applications/combinatorial_helpers/transformations/sign_seperation.py,sh
|
|
57
57
|
classiq/applications/combinatorial_helpers/transformations/slack_variables.py,sha256=6u4pzRoHQzADQRa4UFDm-PLW09pDJuR-0aYtI-3xghY,3084
|
58
58
|
classiq/applications/combinatorial_optimization/__init__.py,sha256=FQv7Kga4aciJzuRuv9SiFLP2uTJdsYpzYZEaH3_cjsE,1050
|
59
59
|
classiq/applications/combinatorial_optimization/combinatorial_optimization_config.py,sha256=jCN7iQJfEVIZE8sx60XzBrPBcBEOHVFXHhOZbq4auRw,618
|
60
|
-
classiq/applications/combinatorial_optimization/combinatorial_optimization_model_constructor.py,sha256=
|
61
|
-
classiq/applications/combinatorial_optimization/combinatorial_problem.py,sha256=
|
60
|
+
classiq/applications/combinatorial_optimization/combinatorial_optimization_model_constructor.py,sha256=lkNPImFThqCHrDp7ftEUEo3U3SAco0zXefGTmSRb0j4,5607
|
61
|
+
classiq/applications/combinatorial_optimization/combinatorial_problem.py,sha256=gkp8m2vOvJti3tyUfleUPCoV0maL4ZtB6Rm6mHpOxB8,7832
|
62
62
|
classiq/applications/combinatorial_optimization/examples/__init__.py,sha256=A0-j2W4dT6eyvRvIoUzK3trntkda3IBpX-tch8evi1M,1725
|
63
63
|
classiq/applications/finance/__init__.py,sha256=t3HcLC2xqNtcRhYW6GAtfxPIeFceFDAmN7pjD4h-vAQ,260
|
64
64
|
classiq/applications/hamiltonian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -90,7 +90,7 @@ classiq/execution/qnn.py,sha256=BjwJw0LXr_I_eeZuXrFTpNVcs6pFBCvzsys8ZraRZZg,2373
|
|
90
90
|
classiq/execution/user_budgets.py,sha256=FY21S7fh6KwBFw5YcZhzWzIktIMifMOLc-fO772EmxE,1184
|
91
91
|
classiq/executor.py,sha256=uLr1640-DZtdPP0T6fCsmUf1Jj7QPumyoE09mJ8lVo0,2308
|
92
92
|
classiq/interface/__init__.py,sha256=cg7hD_XVu1_jJ1fgwmT0rMIoZHopNVeB8xtlmMx-E_A,83
|
93
|
-
classiq/interface/_version.py,sha256=
|
93
|
+
classiq/interface/_version.py,sha256=jI4kviCOmRh93vreuj-hTR8EP_FmR1Kg8OljaxaN4mY,197
|
94
94
|
classiq/interface/analyzer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
95
|
classiq/interface/analyzer/analysis_params.py,sha256=dM5rwSks798cxk4FWe4_X5ToRYtgZQh34F1u0XrFkK8,3881
|
96
96
|
classiq/interface/analyzer/cytoscape_graph.py,sha256=MpeRBIYS1TfwYwiFpgTO51IE0KoxhY510pmEM3S0rbw,2361
|
@@ -235,10 +235,10 @@ classiq/interface/generator/expressions/proxies/classical/classical_struct_proxy
|
|
235
235
|
classiq/interface/generator/expressions/proxies/classical/qmod_struct_instance.py,sha256=X_OJn2Wyj2MjvpHiKz3CNb7nNkgqHjsEgDHrDpI5aHE,1337
|
236
236
|
classiq/interface/generator/expressions/proxies/classical/utils.py,sha256=HiyuBJaaooJX_09nVxXUiAxkgW2TBOIgQI0wwiIdfqM,1437
|
237
237
|
classiq/interface/generator/expressions/proxies/quantum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
238
|
-
classiq/interface/generator/expressions/proxies/quantum/qmod_qarray_proxy.py,sha256=
|
239
|
-
classiq/interface/generator/expressions/proxies/quantum/qmod_qscalar_proxy.py,sha256=
|
238
|
+
classiq/interface/generator/expressions/proxies/quantum/qmod_qarray_proxy.py,sha256=xED68iV61TSqXZnKkZ9HBdGdRgJr6RN7Q27B7rT9LdI,2550
|
239
|
+
classiq/interface/generator/expressions/proxies/quantum/qmod_qscalar_proxy.py,sha256=beCTjjGpXrfHaRqSNVa1DqXxE3Ya1EezRmR7aO4vDpc,2224
|
240
240
|
classiq/interface/generator/expressions/proxies/quantum/qmod_qstruct_proxy.py,sha256=Qw3xru_ofzGT7nOcQMWMmKNmgX5HCe_O8u4xYi5R5_M,1166
|
241
|
-
classiq/interface/generator/expressions/proxies/quantum/qmod_sized_proxy.py,sha256=
|
241
|
+
classiq/interface/generator/expressions/proxies/quantum/qmod_sized_proxy.py,sha256=l87A2ATDHHSw0TxxRTeuavecvAmFE2RqFcWDPVXmzTc,890
|
242
242
|
classiq/interface/generator/expressions/sympy_supported_expressions.py,sha256=Nq5L1sBBWP2HqVFdGyexfFttkXv29BX5Kyp45js2T-Q,1612
|
243
243
|
classiq/interface/generator/expressions/type_proxy.py,sha256=2TSxdmmhnz78jxzPTqGAAfuY-jWUkyXHsE5bXx1A_es,311
|
244
244
|
classiq/interface/generator/finance.py,sha256=qlaBNQomMaxkbHjxXKZ2O9w9LK3im4_hyGPsigcbXT8,3968
|
@@ -366,10 +366,10 @@ classiq/interface/model/block.py,sha256=pJwrEQoG4E8oNzP_kfPkL6avYOnHIYbIfn-VJBxf
|
|
366
366
|
classiq/interface/model/classical_if.py,sha256=-QTpk4ZVSzIfCbjGJ-5XMAi5GSZolR87G-bVhmHSSVE,699
|
367
367
|
classiq/interface/model/classical_parameter_declaration.py,sha256=tcAw-knjFqeHg_snv7qBJuJDrUhmL0v1-Q_YfVgRnEc,1261
|
368
368
|
classiq/interface/model/control.py,sha256=D2AxQG5Fb6uT-Bf1HYA20ESJ11Z0Nkkb6apHzD9_XOg,1534
|
369
|
-
classiq/interface/model/handle_binding.py,sha256=
|
369
|
+
classiq/interface/model/handle_binding.py,sha256=hCnyNSWG429VEyyKdDXaczyTgGEfAk6G-WKddQkiDyg,12022
|
370
370
|
classiq/interface/model/inplace_binary_operation.py,sha256=NkQY99yXE8y7aqyAolFUXkSi7gcIuuyFMYdB8hA2KBw,1630
|
371
371
|
classiq/interface/model/invert.py,sha256=-NuT2Fb9sNIvS6x_14wqLSiqngRlCdmdmBqpAzZMp6M,458
|
372
|
-
classiq/interface/model/model.py,sha256=
|
372
|
+
classiq/interface/model/model.py,sha256=PZNseS0VztuN2wy1P3eSvZzOpSUGUEP0vZGIxGbMWlc,6849
|
373
373
|
classiq/interface/model/model_visitor.py,sha256=LXCbuvjgW_0gtSLB9dfnf4BL6CF7V8b0duA9xCvBUfo,445
|
374
374
|
classiq/interface/model/native_function_definition.py,sha256=_oGboBMAxVTPjkIHT9cKUo8lDNwsnwV62YQaTwKvjug,658
|
375
375
|
classiq/interface/model/parameter.py,sha256=otI4w5Oc4EPAALfZxDf-QxBlMSXP_CtKaUa7STMdaiw,333
|
@@ -380,10 +380,10 @@ classiq/interface/model/quantum_expressions/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
380
380
|
classiq/interface/model/quantum_expressions/amplitude_loading_operation.py,sha256=9vo9duieNmLwGoUn6Ey4C0YSqYymbt3Tb6eo80qATIs,2449
|
381
381
|
classiq/interface/model/quantum_expressions/arithmetic_operation.py,sha256=kqABvyr-niat293lHqBmPhV0Ks3WUgHJ3mevmyD1zD8,2732
|
382
382
|
classiq/interface/model/quantum_expressions/quantum_expression.py,sha256=hSWdSJmsEYaZZ62dWI8ueIl_-lqn7FBnwadsqozzZOI,2228
|
383
|
-
classiq/interface/model/quantum_function_call.py,sha256=
|
383
|
+
classiq/interface/model/quantum_function_call.py,sha256=dkMBc9o-ZkxfYLbdVG_ma_CYMXFwVD-7Aqgbloclu8E,8363
|
384
384
|
classiq/interface/model/quantum_function_declaration.py,sha256=Er0RfxfpcVO5-ufMkBqSFxKz0BHtu7zCMKnTWOwU_ZM,8675
|
385
385
|
classiq/interface/model/quantum_lambda_function.py,sha256=Pbr9ZuQ0l8123j3Zc-QGLD3efzyoHv3shohYY_yIEF4,2499
|
386
|
-
classiq/interface/model/quantum_statement.py,sha256=
|
386
|
+
classiq/interface/model/quantum_statement.py,sha256=xGkT7Ls4mEEQBvFvSrLZIVRCYBPYaG5Lf0eIN7vvqDw,3875
|
387
387
|
classiq/interface/model/quantum_type.py,sha256=KcwykkbjctiQsMc7XaM3EugKYNE2wVmyPYcclH8K3Lc,10311
|
388
388
|
classiq/interface/model/quantum_variable_declaration.py,sha256=Vmx-aHnss8E_ghqX_wi4Njp-dEtYK-WwYHtHAwmGZxk,229
|
389
389
|
classiq/interface/model/repeat.py,sha256=1j8QBxO3swEx6-hByMeLTRSPB3Tf2aOLFUUbKqSJvCg,662
|
@@ -399,48 +399,48 @@ classiq/interface/pyomo_extension/set_pprint.py,sha256=jlyYUHfQXwyzPQIzstnTeIK6T
|
|
399
399
|
classiq/interface/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
400
400
|
classiq/interface/server/global_versions.py,sha256=EyUtBCoGHjgS4jybiHI8wOZq3WOqvta2WYZc5MARkoA,274
|
401
401
|
classiq/interface/server/routes.py,sha256=d5SA589PASB9Cg_SwhRn3Meu_zQBZNaBWlh3O77SnAk,3611
|
402
|
-
classiq/interface/source_reference.py,sha256=
|
402
|
+
classiq/interface/source_reference.py,sha256=H31MKyWVq6pHdJ8fgjd56AvXBx6qWvqXJBERoElS2fk,1881
|
403
403
|
classiq/model_expansions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
404
404
|
classiq/model_expansions/atomic_expression_functions_defs.py,sha256=DW9zbtmeNWaTK3IrV6NK3bLpfGwoouhBF_QkQHVI7TM,11430
|
405
405
|
classiq/model_expansions/capturing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
406
|
-
classiq/model_expansions/capturing/captured_vars.py,sha256=
|
406
|
+
classiq/model_expansions/capturing/captured_vars.py,sha256=mAFfKhSDYDeyi_O6R_qKqyRHELFtaVPBhDSfcJTr0PU,27547
|
407
407
|
classiq/model_expansions/capturing/mangling_utils.py,sha256=wfCsjP0pScZv9YP6JXq3oVhkS-lCFyUoZ9IROBHS3Ek,1858
|
408
408
|
classiq/model_expansions/closure.py,sha256=yfKKAeNG94me1TgA1ywifX9bjLKcax2o5GVbmzoDhuU,5707
|
409
409
|
classiq/model_expansions/debug_flag.py,sha256=JWzl9FFq2CLcvTg_sh-K8Dp_xXvewsTuFKhPjTCrsrs,107
|
410
410
|
classiq/model_expansions/evaluators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
411
|
-
classiq/model_expansions/evaluators/arg_type_match.py,sha256=
|
412
|
-
classiq/model_expansions/evaluators/argument_types.py,sha256=
|
413
|
-
classiq/model_expansions/evaluators/classical_expression.py,sha256=
|
411
|
+
classiq/model_expansions/evaluators/arg_type_match.py,sha256=vri_cwnCv1E3Tmk2XOXjYvhqKJHU18upxNbkv2d7xBU,6155
|
412
|
+
classiq/model_expansions/evaluators/argument_types.py,sha256=idaRKTDHbOW6sVc4S5aX7YFVAmRIh2eeCZR_81imaIk,1489
|
413
|
+
classiq/model_expansions/evaluators/classical_expression.py,sha256=BzPhVpgnsZUjp8RiNDdjTo4QXDmrpcwZE32rLwiCT9U,1371
|
414
414
|
classiq/model_expansions/evaluators/classical_type_inference.py,sha256=fUEx0HXU3NK37HxeByxSI0iuYdf1WcdOpWc-9DH-jnM,3013
|
415
415
|
classiq/model_expansions/evaluators/control.py,sha256=rFSP5kuQZfh0OPMuf0OmiDVlX_c0stl2mKX4tnIhAHA,4110
|
416
|
-
classiq/model_expansions/evaluators/parameter_types.py,sha256=
|
416
|
+
classiq/model_expansions/evaluators/parameter_types.py,sha256=Mvfx3gWAorgu9o8RadEJSmT80iknPG2E3Od5um5X3HA,9827
|
417
417
|
classiq/model_expansions/evaluators/quantum_type_utils.py,sha256=s2kqPenO3qaJsiVa1bo5t4cpJ-MZeRqlVvM9TXPtyBI,7729
|
418
418
|
classiq/model_expansions/evaluators/type_type_match.py,sha256=zo4ijsgtPNBbxBW6r3p7emDJr3LJi-P4YoiArpE5TbA,3256
|
419
|
-
classiq/model_expansions/expression_evaluator.py,sha256=
|
420
|
-
classiq/model_expansions/function_builder.py,sha256=
|
421
|
-
classiq/model_expansions/generative_functions.py,sha256=
|
419
|
+
classiq/model_expansions/expression_evaluator.py,sha256=zMGmVvBvItaz_rX3XqFLrkDZiDkODa_dIl796rFgr1U,4790
|
420
|
+
classiq/model_expansions/function_builder.py,sha256=a_IYyeqAYIZLDdw14hPnGwtNK59UK80d9Uax-PzZTSs,10534
|
421
|
+
classiq/model_expansions/generative_functions.py,sha256=CefLLjnR16NGmf3l9Wt7u9jRaJMHRbwcqMrqQ-dBDSo,8075
|
422
422
|
classiq/model_expansions/interpreters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
423
|
-
classiq/model_expansions/interpreters/base_interpreter.py,sha256=
|
424
|
-
classiq/model_expansions/interpreters/frontend_generative_interpreter.py,sha256=
|
425
|
-
classiq/model_expansions/interpreters/generative_interpreter.py,sha256=
|
423
|
+
classiq/model_expansions/interpreters/base_interpreter.py,sha256=mLwlApyqeDA_JVM020ubLQw6FgU_Iyp6opwnloMwlYY,12063
|
424
|
+
classiq/model_expansions/interpreters/frontend_generative_interpreter.py,sha256=DR2jQC_17WEEcRkbleoQA6J9SMyjPZAcJ7tc71lzKJc,4918
|
425
|
+
classiq/model_expansions/interpreters/generative_interpreter.py,sha256=83EPG50ffb3qeciloij1OKODl1w2nLSmSkzacmhi6fw,12675
|
426
426
|
classiq/model_expansions/model_tables.py,sha256=dlrOGRS2x4Fd_dzClIcV7V8edmbbQzePv9eqxtJQrpo,620
|
427
427
|
classiq/model_expansions/quantum_operations/__init__.py,sha256=iLROXHuWaYKWPYJHUM_6uRNKa9-I7oDPYn1yqYFpYgM,309
|
428
|
-
classiq/model_expansions/quantum_operations/allocate.py,sha256=
|
428
|
+
classiq/model_expansions/quantum_operations/allocate.py,sha256=C5EF3I2aAr-2rFMEVDpgQpyCE4XCqctPslIHiXZLL9Y,3487
|
429
429
|
classiq/model_expansions/quantum_operations/arithmetic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
430
430
|
classiq/model_expansions/quantum_operations/arithmetic/explicit_boolean_expressions.py,sha256=iXmpt6ibVY7EcqZWNpqL2KXqeC6ZVnT8tsTEwu4y_Dk,2221
|
431
|
-
classiq/model_expansions/quantum_operations/assignment_result_processor.py,sha256=
|
431
|
+
classiq/model_expansions/quantum_operations/assignment_result_processor.py,sha256=UMWZQs9ey5kak7SLuUWfubdwjqYX881hMuxGcP50bTM,10792
|
432
432
|
classiq/model_expansions/quantum_operations/bind.py,sha256=kuP09XoNw61eTBpsB9WO5zFEB09HhBYeftaABHsI3AA,5452
|
433
433
|
classiq/model_expansions/quantum_operations/block_evaluator.py,sha256=06EYOb5CVDUvqYXKk-s-rcoY3rQ2Dr2XWUkqNzT0N0w,4734
|
434
|
-
classiq/model_expansions/quantum_operations/call_emitter.py,sha256=
|
434
|
+
classiq/model_expansions/quantum_operations/call_emitter.py,sha256=ZJOIrlEfFnyDAyNQfU7wPgMB_Kyq7_nXILELx649A9A,15047
|
435
435
|
classiq/model_expansions/quantum_operations/composite_emitter.py,sha256=AQp3cYaUUA7eEKNwmZwIq1KEdDlTKRaXiop9pXxSVZg,815
|
436
436
|
classiq/model_expansions/quantum_operations/declarative_call_emitter.py,sha256=IHCS_jqmKcFNSyVCj5MYAe86LZKaf1vEAFTYaLAjVIs,3641
|
437
|
-
classiq/model_expansions/quantum_operations/emitter.py,sha256=
|
437
|
+
classiq/model_expansions/quantum_operations/emitter.py,sha256=oXjzX3pfDPTSnt0RQxK4eud8RE0cSm4RBXrnV5gUkRY,9736
|
438
438
|
classiq/model_expansions/quantum_operations/expression_evaluator.py,sha256=X3hzj4SxCz100t06ot8Xvl7oqlccRIl6f_HSa0XM9kc,1579
|
439
439
|
classiq/model_expansions/quantum_operations/handle_evaluator.py,sha256=ML3xQ_Z9yNDkf8dncoWQzEr5O8EM6CyVof52QM0Zu1U,1107
|
440
440
|
classiq/model_expansions/quantum_operations/quantum_function_call.py,sha256=A_1wfeUNhVWEmziamCMdCJr3gvjdoNFjY4gvUepLuo4,3481
|
441
441
|
classiq/model_expansions/quantum_operations/repeat_block_evaluator.py,sha256=kV6quFtPq8YFrYqM5JrERxDRYJrjJOBueTvNOu-qAgc,1412
|
442
442
|
classiq/model_expansions/quantum_operations/variable_decleration.py,sha256=y9wcBFKXxcBd-YkAnNSn_1cQr9fuUoJzOtBgUlbDmrs,1672
|
443
|
-
classiq/model_expansions/scope.py,sha256=
|
443
|
+
classiq/model_expansions/scope.py,sha256=fux2b7XfkbYae7dGUscMi7GTtCwBnntTOr4hoNdp9xY,10084
|
444
444
|
classiq/model_expansions/scope_initialization.py,sha256=5WEqxrW1WdHJEsjw3t7gWzhQrbqyj5HhooyGb1uBgDE,5872
|
445
445
|
classiq/model_expansions/sympy_conversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
446
446
|
classiq/model_expansions/sympy_conversion/arithmetics.py,sha256=ljvzVBdVm-IkzNuKVZBnvnLDuDgg7ese3sfVzNx2PZk,1524
|
@@ -448,7 +448,7 @@ classiq/model_expansions/sympy_conversion/expression_to_sympy.py,sha256=Qhi-vvUS
|
|
448
448
|
classiq/model_expansions/sympy_conversion/sympy_to_python.py,sha256=03fkNV_GvsUU2e-FkDBCqmbPu3JKeX8hcGhlYCtBXck,4395
|
449
449
|
classiq/model_expansions/transformers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
450
450
|
classiq/model_expansions/transformers/ast_renamer.py,sha256=Ve3ix6u_xbbxqU2SF0Z4F0-4oIhN8lyUPID1O387C-U,806
|
451
|
-
classiq/model_expansions/transformers/model_renamer.py,sha256=
|
451
|
+
classiq/model_expansions/transformers/model_renamer.py,sha256=eQ1XLcUp4MNtIvKxJgKxg8Qe-ayl7TXRqB9vEX05YUg,5600
|
452
452
|
classiq/model_expansions/transformers/var_splitter.py,sha256=lojo3zHj4B78g2oJlYfjrnpRdlNbKMtZ5dx9q5HlubM,7871
|
453
453
|
classiq/model_expansions/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
454
454
|
classiq/model_expansions/utils/counted_name_allocator.py,sha256=9LPLBm-4ZrpC_0r1rbogyF11FnLaGCUyzwWpcBJoSmA,297
|
@@ -457,7 +457,7 @@ classiq/model_expansions/utils/sympy_utils.py,sha256=nfmAj2r5NawLlANA5M2IkN3PmQo
|
|
457
457
|
classiq/model_expansions/utils/text_utils.py,sha256=rVYVPHLmnmEhsDXwn-90AEaznDyuYRf1kBhD0TMHuls,373
|
458
458
|
classiq/model_expansions/visitors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
459
459
|
classiq/model_expansions/visitors/boolean_expression_transformers.py,sha256=a8ITXY48uROZFd9MF8tXdXs14Uxh8XbBpuvRXvRehjY,8067
|
460
|
-
classiq/model_expansions/visitors/symbolic_param_inference.py,sha256=
|
460
|
+
classiq/model_expansions/visitors/symbolic_param_inference.py,sha256=qe99m_8eOXw82uLMMxWpewthNJMYKDisf9ev2ztPTlY,8111
|
461
461
|
classiq/model_expansions/visitors/variable_references.py,sha256=EL-xSJW7DZ00lA7cGZkFVwGRQSYnS_th6EwIIM1sruk,6817
|
462
462
|
classiq/open_library/__init__.py,sha256=bmg_qqXCXo85hcU7_QCce-qYGrpAVSFNwTKCClsclrg,114
|
463
463
|
classiq/open_library/functions/__init__.py,sha256=Xf4XbgHLZphUO5Qw6v5kIi3_fW77jidivjmoHDa3qe8,3358
|
@@ -467,13 +467,13 @@ classiq/open_library/functions/discrete_sine_cosine_transform.py,sha256=mutvfffk
|
|
467
467
|
classiq/open_library/functions/grover.py,sha256=yoMnx4jAF0b2hQqwaKMpPgdbqe9ZCsx2u95Yr029q_I,4367
|
468
468
|
classiq/open_library/functions/hea.py,sha256=Nc9pj-4mGLZVQQKCaVRgrcPd4eViuz3Ji5ZeYzaCozg,4889
|
469
469
|
classiq/open_library/functions/linear_pauli_rotation.py,sha256=5I6OmTyQY1xD6yDH6DY2zKJ8jxAn3YwbINi5uBLk-uc,2659
|
470
|
-
classiq/open_library/functions/lookup_table.py,sha256=
|
470
|
+
classiq/open_library/functions/lookup_table.py,sha256=1qtLKVu-huCuDOgtxWEuMr02-Uokr2YYHNzTRc2zf58,1832
|
471
471
|
classiq/open_library/functions/modular_exponentiation.py,sha256=pNA74BzyycftbmwpfeOIZlbGRPipitfH7l_AW0amWvs,5971
|
472
472
|
classiq/open_library/functions/qaoa_penalty.py,sha256=Uz_ZSn7fRwynP5w2eSOEcft2z4bjJ0DOEyuLACO8ntc,3970
|
473
473
|
classiq/open_library/functions/qft_functions.py,sha256=7pdPBq48QvyQkxHrF3rEKTf0J50qUu_2bN17lfSc7I0,1382
|
474
474
|
classiq/open_library/functions/qpe.py,sha256=e7MBpOthBn73BdqhWpNGT0lkd6Jw3ZG7tE6n--IM0jc,2140
|
475
475
|
classiq/open_library/functions/qsvt.py,sha256=wpLq0P-pmhdTaRQJJWRHwbTZqRnE1M58MfQ2y1C0YUI,14271
|
476
|
-
classiq/open_library/functions/state_preparation.py,sha256=
|
476
|
+
classiq/open_library/functions/state_preparation.py,sha256=lz8eRYblw6YXSYf5DJZjr8oqoV9Mp_QrVWDw8g1M244,13185
|
477
477
|
classiq/open_library/functions/swap_test.py,sha256=hAjiJjZGeJP2qzEkVYmBVlEK44VcNibWZ-KqJwPEcFY,1048
|
478
478
|
classiq/open_library/functions/utility_functions.py,sha256=MFxuk49vdjNIqLPxdloigACfXmuxmqrP_oSJbO49Rbc,2541
|
479
479
|
classiq/open_library/functions/variational.py,sha256=KYoqPKYRjgUXk_10RvogV0YiCG5kl7GZBHBJeeX82II,1715
|
@@ -500,25 +500,26 @@ classiq/qmod/builtins/structs.py,sha256=OpPDFcnZkIo1N9EQVXjqDkEk46vtzA8FmcCv2Kar
|
|
500
500
|
classiq/qmod/cfunc.py,sha256=e3zWNEloBBPy-wJaGI1K5cdNFbd3oq0o4TUY2YDr6ks,1087
|
501
501
|
classiq/qmod/classical_function.py,sha256=iHm6T719PUZQPwuNSkouaMA8J9yHrrHUpP-2AQjsA5g,1088
|
502
502
|
classiq/qmod/cparam.py,sha256=WqWG_XLYU4SVYDHHXsZNFu0QcE4dfaEM-0C_Q1OOFs0,2007
|
503
|
-
classiq/qmod/create_model_function.py,sha256=
|
503
|
+
classiq/qmod/create_model_function.py,sha256=vZowFbyQLSXo42Tmlogc9MDQTRgc_IkZVWaidP_ehV4,2858
|
504
504
|
classiq/qmod/declaration_inferrer.py,sha256=kDKUhJlKGcAaTKD-RqOmb-2dfkb6mO7TkoJdhd8h9d4,8316
|
505
505
|
classiq/qmod/expression_query.py,sha256=24gsE5hJ1o9ZuqPILH7aaoOzKRQY2RZtvIK35xuubGA,1629
|
506
506
|
classiq/qmod/generative.py,sha256=CAZTRNKA0sqp9chfWnYVsW_P0jcI45_VE-VQ-fcZF60,1513
|
507
|
+
classiq/qmod/global_declarative_switch.py,sha256=30QOkNsDdsVdk14TNx-AetFbBskoXGpHQ-k--vNqVWc,427
|
507
508
|
classiq/qmod/model_state_container.py,sha256=eeE5sCo7dbMI6A_opNo0rGEtB7uSIQfv6szBcbamANI,1435
|
508
509
|
classiq/qmod/native/__init__.py,sha256=gm0L3ew0KAy0eSqaMQrvpnKWx85HoA1p9ADaAlyejdA,126
|
509
510
|
classiq/qmod/native/expression_to_qmod.py,sha256=5UakdOGiJFJkPthFD7FrO2Z4mQsqZMNOg9xHTAmPVC4,7389
|
510
|
-
classiq/qmod/native/pretty_printer.py,sha256=
|
511
|
+
classiq/qmod/native/pretty_printer.py,sha256=GQyBavSEQUZVkO9nauae1o1LDBYER2KuWEOi6ikj2Ao,17771
|
511
512
|
classiq/qmod/pretty_print/__init__.py,sha256=jhR0cpXumOJnyb-zWnvMLpEuUOYPnnJ7DJmV-Zxpy1I,132
|
512
513
|
classiq/qmod/pretty_print/expression_to_python.py,sha256=QoRP817CFEp3Ad3Q3hxWW-hbVzWQbHQIGUHjZkpZDm8,7480
|
513
|
-
classiq/qmod/pretty_print/pretty_printer.py,sha256=
|
514
|
+
classiq/qmod/pretty_print/pretty_printer.py,sha256=miuOuBRCB0Dw9OvadodRPtJDY2fox1OT7H_5jI_1j10,24932
|
514
515
|
classiq/qmod/python_classical_type.py,sha256=tbdgzF8IrkF0Z9BMnBey2uk5khg4yaDAjdagOLaiZXs,2971
|
515
|
-
classiq/qmod/qfunc.py,sha256=
|
516
|
+
classiq/qmod/qfunc.py,sha256=islHk7znWoB5kqHLURHFrDEpRvDB3hb6YVaKATHC0Mo,3532
|
516
517
|
classiq/qmod/qmod_constant.py,sha256=U01qRjD8e4tJ83cTeLfD7ndIyXoZu3CrJdlES-iwFAE,5202
|
517
518
|
classiq/qmod/qmod_parameter.py,sha256=3WYO11-F8dmbZKqTokmKxzehLdb-aEPYwyiDcAFbbQ0,4554
|
518
519
|
classiq/qmod/qmod_variable.py,sha256=H0DFV3oWaiqfSlOVpBDczNUbUIvKsOsiVUsBc_9GIuI,25917
|
519
520
|
classiq/qmod/quantum_callable.py,sha256=RifbkZEmZ4COOHfluPD2jfd-qYSda2ytW173diR3tI4,2501
|
520
|
-
classiq/qmod/quantum_expandable.py,sha256
|
521
|
-
classiq/qmod/quantum_function.py,sha256
|
521
|
+
classiq/qmod/quantum_expandable.py,sha256=-uohubbObpg8SVI7e-3wAJso-xgZ0slfAqlOvV1QZ_E,18647
|
522
|
+
classiq/qmod/quantum_function.py,sha256=At5PR0oUwdEx-QVHv3Aul3JGSufJHLiwf_Rv2lW6TFo,13345
|
522
523
|
classiq/qmod/semantics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
523
524
|
classiq/qmod/semantics/annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
524
525
|
classiq/qmod/semantics/annotation/call_annotation.py,sha256=I94YDffDP-PDx3-r8XRFtg7D8B07OyuwnWOGwJVOOOA,3804
|
@@ -540,9 +541,9 @@ classiq/qmod/symbolic_expr.py,sha256=RZkqJqaydahlOW4Qcf5Zvj9FrxPpwxT-YCZUonYA-mI
|
|
540
541
|
classiq/qmod/symbolic_type.py,sha256=ded7bVfWmHFw8MoyivVDJsG5vZZVRQontOZYb1kCrTQ,162
|
541
542
|
classiq/qmod/type_attribute_remover.py,sha256=NZmTXAsngWqthXjE8n-n6yE72fiWTFM12-TXXJ1kJ-Q,1242
|
542
543
|
classiq/qmod/utilities.py,sha256=XoB9JU6Vn4p8ZirrUUaP-UpOInm3jwuuYjB6R_V3XLo,5467
|
543
|
-
classiq/qmod/write_qmod.py,sha256=
|
544
|
-
classiq/synthesis.py,sha256=
|
544
|
+
classiq/qmod/write_qmod.py,sha256=QddTcpXsjLahq3ZATGTIKZW3aj99RtG6MPUHZTKaw38,3508
|
545
|
+
classiq/synthesis.py,sha256=nP8lMJ5FqCuR8tJoOgrytm7lRsKtWbXW6mooDfgJxFI,8650
|
545
546
|
classiq/visualization.py,sha256=q-GepvUJf2-tDqof0isaNwWAlf3W3_1dxvlsak1U0ng,983
|
546
|
-
classiq-0.
|
547
|
-
classiq-0.
|
548
|
-
classiq-0.
|
547
|
+
classiq-0.77.0.dist-info/METADATA,sha256=znkdzc0JaIqxKIcP-F_nAW6ywTIBISinyA_wC5jySXI,3382
|
548
|
+
classiq-0.77.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
549
|
+
classiq-0.77.0.dist-info/RECORD,,
|
File without changes
|