classiq 0.47.0__py3-none-any.whl → 0.48.1__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/combinatorial_helpers/pauli_helpers/pauli_utils.py +2 -7
- classiq/applications/grover/grover_model_constructor.py +2 -1
- classiq/execution/execution_session.py +40 -9
- classiq/execution/jobs.py +18 -6
- classiq/interface/_version.py +1 -1
- classiq/interface/execution/primitives.py +9 -1
- classiq/interface/executor/iqae_result.py +3 -3
- classiq/interface/executor/result.py +3 -1
- classiq/interface/generator/expressions/expression.py +8 -0
- classiq/interface/generator/functions/type_name.py +1 -3
- classiq/interface/generator/synthesis_metadata/synthesis_execution_data.py +17 -3
- classiq/interface/ide/visual_model.py +3 -4
- classiq/interface/model/bind_operation.py +0 -3
- classiq/interface/model/port_declaration.py +1 -12
- classiq/interface/model/quantum_expressions/arithmetic_operation.py +38 -6
- classiq/interface/model/quantum_lambda_function.py +4 -1
- classiq/interface/model/quantum_statement.py +16 -1
- classiq/interface/model/quantum_variable_declaration.py +0 -22
- classiq/interface/server/global_versions.py +4 -4
- classiq/model_expansions/capturing/propagated_var_stack.py +5 -2
- classiq/model_expansions/closure.py +7 -2
- classiq/model_expansions/evaluators/quantum_type_utils.py +0 -7
- classiq/model_expansions/generative_functions.py +146 -28
- classiq/model_expansions/interpreter.py +11 -5
- classiq/model_expansions/quantum_operations/classicalif.py +27 -10
- classiq/model_expansions/quantum_operations/control.py +22 -15
- classiq/model_expansions/quantum_operations/emitter.py +60 -5
- classiq/model_expansions/quantum_operations/expression_operation.py +25 -16
- classiq/model_expansions/quantum_operations/inplace_binary_operation.py +163 -95
- classiq/model_expansions/quantum_operations/invert.py +12 -6
- classiq/model_expansions/quantum_operations/phase.py +15 -3
- classiq/model_expansions/quantum_operations/power.py +9 -8
- classiq/model_expansions/quantum_operations/quantum_assignment_operation.py +20 -5
- classiq/model_expansions/quantum_operations/quantum_function_call.py +1 -1
- classiq/model_expansions/quantum_operations/repeat.py +32 -13
- classiq/model_expansions/quantum_operations/within_apply.py +19 -6
- classiq/model_expansions/scope.py +16 -5
- classiq/model_expansions/scope_initialization.py +11 -1
- classiq/model_expansions/sympy_conversion/expression_to_sympy.py +23 -1
- classiq/model_expansions/visitors/variable_references.py +11 -7
- classiq/qmod/builtins/__init__.py +10 -0
- classiq/qmod/builtins/constants.py +10 -0
- classiq/qmod/builtins/functions/state_preparation.py +4 -1
- classiq/qmod/builtins/operations.py +43 -163
- classiq/qmod/create_model_function.py +1 -1
- classiq/qmod/generative.py +14 -5
- classiq/qmod/native/pretty_printer.py +9 -5
- classiq/qmod/pretty_print/pretty_printer.py +8 -4
- classiq/qmod/qmod_constant.py +28 -18
- classiq/qmod/qmod_variable.py +43 -23
- classiq/qmod/quantum_expandable.py +14 -1
- classiq/qmod/semantics/static_semantics_visitor.py +10 -0
- classiq/qmod/semantics/validation/constants_validation.py +16 -0
- {classiq-0.47.0.dist-info → classiq-0.48.1.dist-info}/METADATA +3 -1
- {classiq-0.47.0.dist-info → classiq-0.48.1.dist-info}/RECORD +56 -54
- {classiq-0.47.0.dist-info → classiq-0.48.1.dist-info}/WHEEL +0 -0
classiq/qmod/qmod_constant.py
CHANGED
@@ -16,11 +16,16 @@ from classiq.qmod.qmod_parameter import CParam, CParamList, CParamStruct
|
|
16
16
|
from classiq.qmod.symbolic_expr import SymbolicExpr
|
17
17
|
from classiq.qmod.utilities import qmod_val_to_expr_str
|
18
18
|
|
19
|
+
QMODULE_ERROR_MESSAGE = (
|
20
|
+
"Error trying to add a constant to a model without a current QModule."
|
21
|
+
)
|
22
|
+
|
19
23
|
|
20
24
|
class QConstant(SymbolicExpr):
|
21
25
|
CURRENT_QMODULE: Optional[ModelStateContainer] = None
|
22
26
|
|
23
27
|
def __init__(self, name: str, py_type: type, value: Any) -> None:
|
28
|
+
super().__init__(name, False)
|
24
29
|
self.name = name
|
25
30
|
self._py_type = py_type
|
26
31
|
self._value = value
|
@@ -30,10 +35,12 @@ class QConstant(SymbolicExpr):
|
|
30
35
|
QConstant.CURRENT_QMODULE = qmodule
|
31
36
|
|
32
37
|
def add_to_model(self) -> None:
|
38
|
+
from classiq.qmod.builtins.constants import __all__ as builtin_constants
|
39
|
+
|
40
|
+
if self.name in builtin_constants:
|
41
|
+
return
|
33
42
|
if QConstant.CURRENT_QMODULE is None:
|
34
|
-
raise ClassiqError(
|
35
|
-
"Error trying to add a constant to a model without a current QModule."
|
36
|
-
)
|
43
|
+
raise ClassiqError(QMODULE_ERROR_MESSAGE)
|
37
44
|
|
38
45
|
expr = qmod_val_to_expr_str(self._value)
|
39
46
|
if (
|
@@ -42,26 +49,32 @@ class QConstant(SymbolicExpr):
|
|
42
49
|
):
|
43
50
|
raise ClassiqError(f"Constant {self.name} is already defined in the model")
|
44
51
|
|
52
|
+
QConstant.CURRENT_QMODULE.constants[self.name] = self._get_constant_node()
|
53
|
+
|
54
|
+
def _get_constant_node(self) -> Constant:
|
45
55
|
if isinstance(self._value, QConstant):
|
46
|
-
QConstant.CURRENT_QMODULE
|
56
|
+
if QConstant.CURRENT_QMODULE is None:
|
57
|
+
raise ClassiqError(QMODULE_ERROR_MESSAGE)
|
58
|
+
return Constant(
|
47
59
|
name=self.name,
|
48
60
|
const_type=QConstant.CURRENT_QMODULE.constants[
|
49
61
|
self._value.name
|
50
62
|
].const_type,
|
51
63
|
value=Expression(expr=self._value.name),
|
52
64
|
)
|
53
|
-
else:
|
54
|
-
qmod_type = python_type_to_qmod(
|
55
|
-
self._py_type, qmodule=QConstant.CURRENT_QMODULE
|
56
|
-
)
|
57
|
-
if qmod_type is None:
|
58
|
-
raise ClassiqError("Invalid QMOD type")
|
59
65
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
)
|
66
|
+
qmod_type = python_type_to_qmod(
|
67
|
+
self._py_type, qmodule=QConstant.CURRENT_QMODULE
|
68
|
+
)
|
69
|
+
if qmod_type is None:
|
70
|
+
raise ClassiqError("Invalid QMOD type")
|
71
|
+
|
72
|
+
expr = qmod_val_to_expr_str(self._value)
|
73
|
+
return Constant(
|
74
|
+
name=self.name,
|
75
|
+
const_type=qmod_type,
|
76
|
+
value=Expression(expr=expr),
|
77
|
+
)
|
65
78
|
|
66
79
|
def __getattr__(self, name: str) -> CParam:
|
67
80
|
self.add_to_model()
|
@@ -100,6 +113,3 @@ class QConstant(SymbolicExpr):
|
|
100
113
|
qmod_type,
|
101
114
|
QConstant.CURRENT_QMODULE,
|
102
115
|
)[item]
|
103
|
-
|
104
|
-
def __str__(self) -> str:
|
105
|
-
return self.name
|
classiq/qmod/qmod_variable.py
CHANGED
@@ -48,6 +48,7 @@ from classiq.interface.model.quantum_expressions.amplitude_loading_operation imp
|
|
48
48
|
)
|
49
49
|
from classiq.interface.model.quantum_expressions.arithmetic_operation import (
|
50
50
|
ArithmeticOperation,
|
51
|
+
ArithmeticOperationKind,
|
51
52
|
)
|
52
53
|
from classiq.interface.model.quantum_type import (
|
53
54
|
QuantumBit,
|
@@ -57,10 +58,10 @@ from classiq.interface.model.quantum_type import (
|
|
57
58
|
)
|
58
59
|
from classiq.interface.source_reference import SourceReference
|
59
60
|
|
60
|
-
from classiq.qmod.cparam import ArrayBase,
|
61
|
+
from classiq.qmod.cparam import ArrayBase, CInt, CParamScalar
|
61
62
|
from classiq.qmod.generative import (
|
62
63
|
generative_mode_context,
|
63
|
-
|
64
|
+
interpret_expression,
|
64
65
|
is_generative_mode,
|
65
66
|
)
|
66
67
|
from classiq.qmod.model_state_container import QMODULE, ModelStateContainer
|
@@ -95,10 +96,6 @@ def _no_current_expandable() -> Iterator[None]:
|
|
95
96
|
QCallable.CURRENT_EXPANDABLE = current_expandable
|
96
97
|
|
97
98
|
|
98
|
-
def _evaluate_expression(expr: str) -> Any:
|
99
|
-
return get_frontend_interpreter().evaluate(Expression(expr=expr)).value
|
100
|
-
|
101
|
-
|
102
99
|
class QVar(Symbolic):
|
103
100
|
def __init__(
|
104
101
|
self,
|
@@ -171,7 +168,7 @@ class QVar(Symbolic):
|
|
171
168
|
def size(self) -> Union[CParamScalar, int]:
|
172
169
|
if is_generative_mode():
|
173
170
|
with generative_mode_context(False):
|
174
|
-
return
|
171
|
+
return interpret_expression(str(self.size))
|
175
172
|
return CParamScalar(f"get_field({self}, 'size')")
|
176
173
|
|
177
174
|
|
@@ -192,7 +189,10 @@ class QScalar(QVar, SymbolicExpr):
|
|
192
189
|
SymbolicExpr.__init__(self, str(origin), True)
|
193
190
|
|
194
191
|
def _insert_arith_operation(
|
195
|
-
self,
|
192
|
+
self,
|
193
|
+
expr: SymbolicTypes,
|
194
|
+
kind: ArithmeticOperationKind,
|
195
|
+
source_ref: SourceReference,
|
196
196
|
) -> None:
|
197
197
|
# Fixme: Arithmetic operations are not yet supported on slices (see CAD-12670)
|
198
198
|
if TYPE_CHECKING:
|
@@ -201,7 +201,7 @@ class QScalar(QVar, SymbolicExpr):
|
|
201
201
|
ArithmeticOperation(
|
202
202
|
expression=Expression(expr=str(expr)),
|
203
203
|
result_var=self.get_handle_binding(),
|
204
|
-
|
204
|
+
operation_kind=kind,
|
205
205
|
source_ref=source_ref,
|
206
206
|
)
|
207
207
|
)
|
@@ -225,7 +225,9 @@ class QScalar(QVar, SymbolicExpr):
|
|
225
225
|
f"Invalid argument {other!r} for out-of-place arithmetic operation"
|
226
226
|
)
|
227
227
|
|
228
|
-
self._insert_arith_operation(
|
228
|
+
self._insert_arith_operation(
|
229
|
+
other, ArithmeticOperationKind.Assignment, get_source_ref(sys._getframe(1))
|
230
|
+
)
|
229
231
|
return self
|
230
232
|
|
231
233
|
def __ixor__(self, other: Any) -> Self:
|
@@ -234,7 +236,20 @@ class QScalar(QVar, SymbolicExpr):
|
|
234
236
|
f"Invalid argument {other!r} for in-place arithmetic operation"
|
235
237
|
)
|
236
238
|
|
237
|
-
self._insert_arith_operation(
|
239
|
+
self._insert_arith_operation(
|
240
|
+
other, ArithmeticOperationKind.InplaceXor, get_source_ref(sys._getframe(1))
|
241
|
+
)
|
242
|
+
return self
|
243
|
+
|
244
|
+
def __iadd__(self, other: Any) -> Self:
|
245
|
+
if not isinstance(other, get_args(SymbolicTypes)):
|
246
|
+
raise TypeError(
|
247
|
+
f"Invalid argument {other!r} for in-place arithmetic operation"
|
248
|
+
)
|
249
|
+
|
250
|
+
self._insert_arith_operation(
|
251
|
+
other, ArithmeticOperationKind.InplaceAdd, get_source_ref(sys._getframe(1))
|
252
|
+
)
|
238
253
|
return self
|
239
254
|
|
240
255
|
def __imul__(self, other: Any) -> Self:
|
@@ -273,18 +288,21 @@ class QNum(Generic[_P], QScalar):
|
|
273
288
|
self,
|
274
289
|
name: Union[str, HandleBinding],
|
275
290
|
size: Union[int, CInt, Expression, None] = None,
|
276
|
-
is_signed: Union[bool,
|
291
|
+
is_signed: Union[bool, Expression, SymbolicExpr, None] = None,
|
277
292
|
fraction_digits: Union[int, CInt, Expression, None] = None,
|
278
293
|
_expr_str: Optional[str] = None,
|
279
294
|
):
|
280
|
-
if (
|
281
|
-
size is None
|
282
|
-
and (is_signed is not None or fraction_digits is not None)
|
283
|
-
or size is not None
|
284
|
-
and (is_signed is None or fraction_digits is None)
|
285
|
-
):
|
295
|
+
if size is None and (is_signed is not None or fraction_digits is not None):
|
286
296
|
raise ClassiqValueError(
|
287
|
-
"
|
297
|
+
"Cannot assign 'is_signed' and 'fraction_digits' without 'size'"
|
298
|
+
)
|
299
|
+
if is_signed is not None and fraction_digits is None:
|
300
|
+
raise ClassiqValueError(
|
301
|
+
"Cannot assign 'is_signed' without 'fraction_digits'"
|
302
|
+
)
|
303
|
+
if is_signed is None and fraction_digits is not None:
|
304
|
+
raise ClassiqValueError(
|
305
|
+
"Cannot assign 'fraction_digits' without 'is_signed'"
|
288
306
|
)
|
289
307
|
self._size = (
|
290
308
|
size
|
@@ -308,11 +326,13 @@ class QNum(Generic[_P], QScalar):
|
|
308
326
|
type_args = version_portable_get_args(type_hint)
|
309
327
|
if len(type_args) == 0:
|
310
328
|
return None, None, None
|
311
|
-
if len(type_args)
|
329
|
+
if len(type_args) not in (1, 3):
|
312
330
|
raise ClassiqValueError(
|
313
331
|
"QNum receives three type arguments: QNum[size: int | CInt, "
|
314
332
|
"is_signed: bool | CBool, fraction_digits: int | CInt]"
|
315
333
|
)
|
334
|
+
if len(type_args) == 1:
|
335
|
+
return type_args[0], None, None
|
316
336
|
return type_args[0], type_args[1], type_args[2]
|
317
337
|
|
318
338
|
@classmethod
|
@@ -354,14 +374,14 @@ class QNum(Generic[_P], QScalar):
|
|
354
374
|
def fraction_digits(self) -> Union[CParamScalar, int]:
|
355
375
|
if is_generative_mode():
|
356
376
|
with generative_mode_context(False):
|
357
|
-
return
|
377
|
+
return interpret_expression(str(self.fraction_digits))
|
358
378
|
return CParamScalar(f"get_field({self}, 'fraction_digits')")
|
359
379
|
|
360
380
|
@property
|
361
381
|
def is_signed(self) -> Union[CParamScalar, bool]:
|
362
382
|
if is_generative_mode():
|
363
383
|
with generative_mode_context(False):
|
364
|
-
return
|
384
|
+
return interpret_expression(str(self.is_signed))
|
365
385
|
return CParamScalar(f"get_field({self}, 'is_signed')")
|
366
386
|
|
367
387
|
# Support comma-separated generic args in older Python versions
|
@@ -466,7 +486,7 @@ class QArray(ArrayBase[_P], QVar):
|
|
466
486
|
def len(self) -> Union[CParamScalar, int]:
|
467
487
|
if is_generative_mode():
|
468
488
|
with generative_mode_context(False):
|
469
|
-
return
|
489
|
+
return interpret_expression(str(self.len))
|
470
490
|
if self._length is not None:
|
471
491
|
return CParamScalar(f"{self._length}")
|
472
492
|
return CParamScalar(f"get_field({self}, 'len')")
|
@@ -122,8 +122,17 @@ class QExpandable(QCallable, QExpandableInterface, ABC):
|
|
122
122
|
|
123
123
|
def _get_positional_args(self) -> List[ArgType]:
|
124
124
|
result: List[ArgType] = []
|
125
|
+
rename_params = self.infer_rename_params()
|
126
|
+
if rename_params is not None and len(rename_params) != len(
|
127
|
+
self.func_decl.positional_arg_declarations
|
128
|
+
):
|
129
|
+
op_name = (
|
130
|
+
f" {self.func_decl.name!r}" if self.func_decl.name is not None else ""
|
131
|
+
)
|
132
|
+
raise ClassiqValueError(
|
133
|
+
f"Operand{op_name} takes {len(self.func_decl.positional_arg_declarations)} arguments but the received function takes {len(rename_params)} argument"
|
134
|
+
)
|
125
135
|
for idx, arg in enumerate(self.func_decl.positional_arg_declarations):
|
126
|
-
rename_params = self.infer_rename_params()
|
127
136
|
actual_name = (
|
128
137
|
rename_params[idx] if rename_params is not None else arg.get_name()
|
129
138
|
)
|
@@ -303,6 +312,10 @@ def prepare_arg(
|
|
303
312
|
return [prepare_arg(arg_decl, v, func_name, param_name) for v in val]
|
304
313
|
|
305
314
|
if not isinstance(val, QCallable):
|
315
|
+
if not callable(val):
|
316
|
+
raise ClassiqValueError(
|
317
|
+
f"Operand argument to {param_name!r} must be a callable object"
|
318
|
+
)
|
306
319
|
new_arg_decl = decl_without_type_attributes(arg_decl)
|
307
320
|
val = QLambdaFunction(new_arg_decl, val)
|
308
321
|
val.expand()
|
@@ -51,6 +51,9 @@ from classiq.interface.model.within_apply_operation import WithinApply
|
|
51
51
|
from classiq.qmod.builtins.functions import BUILTIN_FUNCTION_DECLARATIONS
|
52
52
|
from classiq.qmod.semantics.annotation import annotate_function_call_decl
|
53
53
|
from classiq.qmod.semantics.error_manager import ErrorManager
|
54
|
+
from classiq.qmod.semantics.validation.constants_validation import (
|
55
|
+
check_duplicate_constants,
|
56
|
+
)
|
54
57
|
from classiq.qmod.semantics.validation.func_call_validation import (
|
55
58
|
check_no_overlapping_quantum_args,
|
56
59
|
validate_call_arguments,
|
@@ -110,6 +113,7 @@ class StaticSemanticsVisitor(Visitor):
|
|
110
113
|
|
111
114
|
def visit_Model(self, model: Model) -> None:
|
112
115
|
check_duplicate_types([*model.enums, *model.types, *model.qstructs])
|
116
|
+
check_duplicate_constants(model.constants)
|
113
117
|
for qstruct in model.qstructs:
|
114
118
|
check_qstruct_has_fields(qstruct)
|
115
119
|
if check_qstruct_fields_are_defined(
|
@@ -318,6 +322,12 @@ class StaticSemanticsVisitor(Visitor):
|
|
318
322
|
|
319
323
|
for handle_metadata in inouts:
|
320
324
|
handle_binding = handle_metadata.handle
|
325
|
+
|
326
|
+
if handle_binding.name not in self.current_scope.variable_states:
|
327
|
+
ErrorManager().add_error(
|
328
|
+
f"Variable {handle_binding.name!r} is not defined"
|
329
|
+
)
|
330
|
+
return
|
321
331
|
handle_wiring_state = self.current_scope.variable_states[
|
322
332
|
handle_binding.name
|
323
333
|
]
|
@@ -0,0 +1,16 @@
|
|
1
|
+
from typing import Sequence
|
2
|
+
|
3
|
+
from classiq.interface.generator.constant import Constant
|
4
|
+
|
5
|
+
from classiq.qmod.builtins import BUILTIN_CONSTANTS
|
6
|
+
from classiq.qmod.semantics.error_manager import ErrorManager
|
7
|
+
|
8
|
+
|
9
|
+
def check_duplicate_constants(constants: Sequence[Constant]) -> None:
|
10
|
+
known_constants = {constant.name: constant for constant in BUILTIN_CONSTANTS}
|
11
|
+
for constant in constants:
|
12
|
+
if constant.name in known_constants:
|
13
|
+
with ErrorManager().node_context(constant):
|
14
|
+
ErrorManager().add_error(f"Constant {constant.name!r} already exists")
|
15
|
+
else:
|
16
|
+
known_constants[constant.name] = constant
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: classiq
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.48.1
|
4
4
|
Summary: Classiq's Python SDK for quantum computing
|
5
5
|
Home-page: https://classiq.io
|
6
6
|
License: Proprietary
|
@@ -35,9 +35,11 @@ Requires-Dist: Pyomo (>=6.5,<6.6)
|
|
35
35
|
Requires-Dist: black (>=24.0,<25.0)
|
36
36
|
Requires-Dist: httpx (>=0.23.0,<1)
|
37
37
|
Requires-Dist: ipywidgets (>=7.7.1,<8.0.0) ; extra == "analyzer-sdk"
|
38
|
+
Requires-Dist: jupyterlab (>=4.2.5,<5.0.0) ; extra == "analyzer-sdk"
|
38
39
|
Requires-Dist: keyring (>=23.5.0,<24.0.0)
|
39
40
|
Requires-Dist: matplotlib (>=3.4.3,<4.0.0)
|
40
41
|
Requires-Dist: networkx (>=2.5.1,<3.0.0)
|
42
|
+
Requires-Dist: notebook (>=7.2.2,<8.0.0) ; extra == "analyzer-sdk"
|
41
43
|
Requires-Dist: numexpr (>=2.7.3,<3.0.0)
|
42
44
|
Requires-Dist: numpy (>=1.20.1,<2.0.0) ; python_version < "3.12"
|
43
45
|
Requires-Dist: numpy (>=1.26.0,<2.0.0) ; python_version >= "3.12"
|
@@ -42,7 +42,7 @@ classiq/applications/combinatorial_helpers/memory.py,sha256=Z-ieb02VqmCU3cKjdzVL
|
|
42
42
|
classiq/applications/combinatorial_helpers/optimization_model.py,sha256=gm1-4iYArrY8YtU6r2LWlWU-f3SP4PLgnhFf5a5xClc,5880
|
43
43
|
classiq/applications/combinatorial_helpers/pauli_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
44
|
classiq/applications/combinatorial_helpers/pauli_helpers/pauli_sparsing.py,sha256=-vsJgA4Th3wrIxjNrG7Vv6ME8iZbw8rLuFZ99-tRpEc,1263
|
45
|
-
classiq/applications/combinatorial_helpers/pauli_helpers/pauli_utils.py,sha256=
|
45
|
+
classiq/applications/combinatorial_helpers/pauli_helpers/pauli_utils.py,sha256=TZgnZXdhGvzsO4KG3NML4eHY7CKjnSl5FBhe7zLKVRQ,1669
|
46
46
|
classiq/applications/combinatorial_helpers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
47
|
classiq/applications/combinatorial_helpers/pyomo_utils.py,sha256=zKCe2Kwy3eiIypksbNmDiFf1ao3IoqP_DqhzyEotWTY,8345
|
48
48
|
classiq/applications/combinatorial_helpers/solvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -62,7 +62,7 @@ classiq/applications/combinatorial_optimization/examples/__init__.py,sha256=8Kwh
|
|
62
62
|
classiq/applications/finance/__init__.py,sha256=ikPvV7k4qjRkG5fa_MdDVvohXKB1w22sO-NsMx8vtQw,380
|
63
63
|
classiq/applications/finance/finance_model_constructor.py,sha256=USKi-2BvBHFEx3Ein0UFqtM6671ujvP-jTdNVRVZ9S4,6518
|
64
64
|
classiq/applications/grover/__init__.py,sha256=Qmo1rJQDp3iafHmIbC3qDKtoN3dXHsD80SJtsdnwxq4,180
|
65
|
-
classiq/applications/grover/grover_model_constructor.py,sha256=
|
65
|
+
classiq/applications/grover/grover_model_constructor.py,sha256=2OMhaVRtRbeGONVlNH3o9t8lfnFdxPUVfNHiYJb1PiQ,5800
|
66
66
|
classiq/applications/hamiltonian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
67
|
classiq/applications/hamiltonian/pauli_decomposition.py,sha256=294AVd2QVmZlqZOvZ8f6u3pn3x8aqRxXCR2N2G6oVEQ,3981
|
68
68
|
classiq/applications/libraries/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -88,12 +88,12 @@ classiq/applications/qsvm/qsvm_data_generation.py,sha256=1NJfcEWAwRtjWilXhHJbcDV
|
|
88
88
|
classiq/applications/qsvm/qsvm_model_constructor.py,sha256=2AsdS4lXM0kgwevi5lLqbttDQt2B6fPUomRqfbPZgXk,3958
|
89
89
|
classiq/execution/__init__.py,sha256=wyqoTGjB8KNTiPr9TLY1hXZbwz6SC2qYywmm-sQr5D0,1057
|
90
90
|
classiq/execution/all_hardware_devices.py,sha256=J7LilVskLZFDSqNnIcaqN3_esbs9JgKPrbdApHKU6FI,393
|
91
|
-
classiq/execution/execution_session.py,sha256=
|
92
|
-
classiq/execution/jobs.py,sha256=
|
91
|
+
classiq/execution/execution_session.py,sha256=VvmErZ52viQsOdPuRqw5DM6POjq8KlZBaGDI7QKy1ZQ,14540
|
92
|
+
classiq/execution/jobs.py,sha256=t7Wdegpi6lylthg23a98rSmoZ8xXNGfz--efHYw39JY,9560
|
93
93
|
classiq/execution/qnn.py,sha256=qsOA2mD8Ne_4VwvyGPfuHVDTzyxVnDHwE2gfoaOMsf8,2339
|
94
94
|
classiq/executor.py,sha256=jKD5O_tJpL2NMTC_N0NEuPJEmKZIaqsTpQrgZ88sleg,2594
|
95
95
|
classiq/interface/__init__.py,sha256=cg7hD_XVu1_jJ1fgwmT0rMIoZHopNVeB8xtlmMx-E_A,83
|
96
|
-
classiq/interface/_version.py,sha256
|
96
|
+
classiq/interface/_version.py,sha256=S41xdanANzq1eRMwHrwqVfplS3dXkiqYaEvMTxElQOg,197
|
97
97
|
classiq/interface/analyzer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
98
|
classiq/interface/analyzer/analysis_params.py,sha256=043hfS-I3Ec6tkcniKMQQUiRyEC7zlNhntTBpZQB8hw,3725
|
99
99
|
classiq/interface/analyzer/cytoscape_graph.py,sha256=_2GviubgrDMAbF57PTDMhS9W0mTCLYWdyu0HndDPh54,2116
|
@@ -144,7 +144,7 @@ classiq/interface/enum_utils.py,sha256=QxkxLGgON8vdSzLZzHFlPEBJoGOqoIwpESEfLfRqN
|
|
144
144
|
classiq/interface/exceptions.py,sha256=kBi7lViviXksngC60NFpMtjKtSx8J6lwTV2ERhPr_-s,4113
|
145
145
|
classiq/interface/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
146
146
|
classiq/interface/execution/jobs.py,sha256=24QKl98LBAYm7OgUk64Ch4bYasuivGFhG33L9KWunCw,585
|
147
|
-
classiq/interface/execution/primitives.py,sha256=
|
147
|
+
classiq/interface/execution/primitives.py,sha256=a_vH8YgdMeEVYx1h9sgNAqbDQmqca3ePvHfsADHJMn4,584
|
148
148
|
classiq/interface/execution/resource_estimator.py,sha256=YJRuk9lAkhpwqegjyOrxvEY1TgHzvPnXCMAd-MQC6GE,144
|
149
149
|
classiq/interface/execution/result.py,sha256=6TduBhKFw8j7Yxcgn9d2MA0lm82sEcfY1yWIKUOdHro,139
|
150
150
|
classiq/interface/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -154,12 +154,12 @@ classiq/interface/executor/estimation.py,sha256=lJEmN3Uj9bW0EY7JEZvzItwEybbBHSn7
|
|
154
154
|
classiq/interface/executor/execution_preferences.py,sha256=ocoGaUOwubPqT5PtEO9zpzH-OR2IfzLGFPk-xV3cWbE,2926
|
155
155
|
classiq/interface/executor/execution_request.py,sha256=SPJlQSBQ-DPQrd79z351Gsr8g1bVcqve5lRw5fZJES4,1935
|
156
156
|
classiq/interface/executor/execution_result.py,sha256=aQ1xcv8j3HonSyKJ6gtVN45nlUIp2ut8Xu5Mmg83Js4,2807
|
157
|
-
classiq/interface/executor/iqae_result.py,sha256=
|
157
|
+
classiq/interface/executor/iqae_result.py,sha256=rGTDQ8hitlK1gm5Psu_KkRhMbIjftjjglc3PuwJD8U8,588
|
158
158
|
classiq/interface/executor/optimizer_preferences.py,sha256=5iXRJjHH74rpevyfG8zuahBiqLOOXLNsqzZyz4FYsoM,4323
|
159
159
|
classiq/interface/executor/quantum_code.py,sha256=Yjt_nqNWcoZHxRtcGLzFPBxElBntowCGs5fIxWwLNqU,4067
|
160
160
|
classiq/interface/executor/quantum_instruction_set.py,sha256=_2owh6shcNSKlCHCXbAO6UzzZqldTu3YmUqUw9Qefvo,565
|
161
161
|
classiq/interface/executor/register_initialization.py,sha256=2xzIUm4BmmAPQbB9QYW67FELaB4I3jIaMd9irEsoqKA,1399
|
162
|
-
classiq/interface/executor/result.py,sha256=
|
162
|
+
classiq/interface/executor/result.py,sha256=PPQqdc1Nob0qaB7K4FNoLwL9hIKgBqbnhPLrHF4xmIE,11785
|
163
163
|
classiq/interface/executor/vqe_result.py,sha256=LcxVjen8b6wl8ARsqDPOdpq1-cdUxF5CCCfVL_U7zRc,2336
|
164
164
|
classiq/interface/finance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
165
165
|
classiq/interface/finance/finance_modelling_params.py,sha256=dmJscMXugQsBRoFd4HFtrTU8gsuZJ6sS51R4crC-PKE,347
|
@@ -220,7 +220,7 @@ classiq/interface/generator/expressions/atomic_expression_functions.py,sha256=OB
|
|
220
220
|
classiq/interface/generator/expressions/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
221
|
classiq/interface/generator/expressions/enums/finance_functions.py,sha256=AQMv_EawqHMEckUEAAqrQ6yw0fgVFerAqa2OVvNvwWE,437
|
222
222
|
classiq/interface/generator/expressions/evaluated_expression.py,sha256=S4vNv5nL5Nx52Fz3RKEQKFQ7-lRQdqiofSTPdkkoJPg,2383
|
223
|
-
classiq/interface/generator/expressions/expression.py,sha256=
|
223
|
+
classiq/interface/generator/expressions/expression.py,sha256=sVHKSBGDKWqgP6LCXqdpj-qQrxBPBKkObCFBtluRT48,3257
|
224
224
|
classiq/interface/generator/expressions/expression_constants.py,sha256=XyLTVuLwNe3OU4N2f5UhsqWjD3U5F1IGEtnvP3WrlZ0,748
|
225
225
|
classiq/interface/generator/expressions/expression_types.py,sha256=BcqLJ_v0Rwm7gPLhdAnsZxPauFxdE6WHdiOGBVdpXtw,685
|
226
226
|
classiq/interface/generator/expressions/handle_identifier.py,sha256=Vf1EsfzkW3tBk9S6QOLPn5yuLW1EChQ4Ja6OpLWPLFw,93
|
@@ -246,7 +246,7 @@ classiq/interface/generator/functions/concrete_types.py,sha256=pKa-vuzRYCNJw3I1X
|
|
246
246
|
classiq/interface/generator/functions/function_declaration.py,sha256=xlNLzVsU_KzylLp00LLt_l5nEy9NnojCG4rJICZHrvg,584
|
247
247
|
classiq/interface/generator/functions/port_declaration.py,sha256=ESJE_19jOg_zS1reFN5dq0xgobZ6J3C3DsIs6EME1c4,1100
|
248
248
|
classiq/interface/generator/functions/qmod_python_interface.py,sha256=DVHHTMtbWn38nN5XrTMrfJHkIzeKRU54AWfLymLppvs,66
|
249
|
-
classiq/interface/generator/functions/type_name.py,sha256=
|
249
|
+
classiq/interface/generator/functions/type_name.py,sha256=3Xzo11Wbe3azNfoATBiKMcHK5xPm-0R0-oN3CifF-QI,2593
|
250
250
|
classiq/interface/generator/generated_circuit_data.py,sha256=nMEcqeURljkmvrZ7m-i904RDTav1RuZJDsMa4yTGtkg,5415
|
251
251
|
classiq/interface/generator/grover_diffuser.py,sha256=aqamtljo986D5k-DTh2B4yBlEH3F7DOJXjxS9hhrGps,3530
|
252
252
|
classiq/interface/generator/grover_operator.py,sha256=warGAu9gZH0WIWBLkKdfARMivxNnb8EuOWJrH71obyQ,3822
|
@@ -314,7 +314,7 @@ classiq/interface/generator/state_preparation/w_state_preparation.py,sha256=KBlP
|
|
314
314
|
classiq/interface/generator/synthesis_execution_parameter.py,sha256=h5SYDT80uOYVIAAFLTVZ1Egq4K0p7cHrP3jGJiy47aA,300
|
315
315
|
classiq/interface/generator/synthesis_metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
316
316
|
classiq/interface/generator/synthesis_metadata/synthesis_duration.py,sha256=CzE61mB4cVKhwO443STVkcPYWPuEjuB02KCtjqqBi4I,468
|
317
|
-
classiq/interface/generator/synthesis_metadata/synthesis_execution_data.py,sha256=
|
317
|
+
classiq/interface/generator/synthesis_metadata/synthesis_execution_data.py,sha256=s5Lx8yhiv9pi6DFKj5jgmQOH2AwXfVdQ9R-N8Mn-1Qk,1287
|
318
318
|
classiq/interface/generator/transpiler_basis_gates.py,sha256=BBY1ueIsjUmxUc7MZj7VwV5jYBNuN0a0HT3UcIh8S_s,2408
|
319
319
|
classiq/interface/generator/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
320
320
|
classiq/interface/generator/types/builtin_enum_declarations.py,sha256=_FW45QH1LgXfXP83ZNhc74-BZTzjwARngTlA6YKATlk,2315
|
@@ -342,11 +342,11 @@ classiq/interface/helpers/validation_helpers.py,sha256=oUD1jMdTSoAkV-HjbkvMovb8Z
|
|
342
342
|
classiq/interface/helpers/versioned_model.py,sha256=iHB0oO7pWKaE0l62SdfBbY3QwHSiSA0h9oUQQwRrvKI,295
|
343
343
|
classiq/interface/ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
344
344
|
classiq/interface/ide/ide_data.py,sha256=Z3keVfjxK8dpC64ZJ0PEoLWgtmOaxiv2CgBzkxbFVmY,2508
|
345
|
-
classiq/interface/ide/visual_model.py,sha256=
|
345
|
+
classiq/interface/ide/visual_model.py,sha256=fd9A3nwZunpIGJ-tLC9eDNFhYOLrlQZ4oE0fo1geKs8,2164
|
346
346
|
classiq/interface/interface_version.py,sha256=Q1aeahrMg6ePaFeDei3GEHzHA2_cJnGoJK3KQ3Av55k,24
|
347
347
|
classiq/interface/jobs.py,sha256=QFGSbXpFK589jW4DzGGrNhkwm3ZhTehDt8P3lENXTsc,2749
|
348
348
|
classiq/interface/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
349
|
-
classiq/interface/model/bind_operation.py,sha256=
|
349
|
+
classiq/interface/model/bind_operation.py,sha256=w0St9rc1PekuP5gHgo9iIopWSvL7xEfNlBQ8LbxkYL4,1825
|
350
350
|
classiq/interface/model/classical_if.py,sha256=Qr726EEiim47PexMd8lTRfHLziUoiTUitnHrM3-oSgI,432
|
351
351
|
classiq/interface/model/classical_parameter_declaration.py,sha256=qbC9gVEsqZJlSSrVjweKRY2tSMaEkl1Gpwd5W3j4fpE,1130
|
352
352
|
classiq/interface/model/control.py,sha256=paUt8gOYIGQXoDvfPkSl-WfHUMnpKkkXG2064E5dhB0,585
|
@@ -357,18 +357,18 @@ classiq/interface/model/model.py,sha256=XXqn0UaSb35gdGjlso-6VB1_gyct9HPuz2L6UeMA
|
|
357
357
|
classiq/interface/model/native_function_definition.py,sha256=_oGboBMAxVTPjkIHT9cKUo8lDNwsnwV62YQaTwKvjug,658
|
358
358
|
classiq/interface/model/parameter.py,sha256=otI4w5Oc4EPAALfZxDf-QxBlMSXP_CtKaUa7STMdaiw,333
|
359
359
|
classiq/interface/model/phase_operation.py,sha256=sZh00h1wOkZLiwdv_-vqJRtYJxZzmsNqCjGm2z3aXRQ,323
|
360
|
-
classiq/interface/model/port_declaration.py,sha256=
|
360
|
+
classiq/interface/model/port_declaration.py,sha256=l5ngik16iZU7BevFfyZvFY2YfY9pMcfxpGe2sMPd90U,1541
|
361
361
|
classiq/interface/model/power.py,sha256=3C2NOkq_t8AafvYsN51hmgMIJB0pic_DvZxYbID9WX4,388
|
362
362
|
classiq/interface/model/quantum_expressions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
363
363
|
classiq/interface/model/quantum_expressions/amplitude_loading_operation.py,sha256=v45Eb44VxyBTMH-E1NTb5-YdKCj5EY_rb-BClHI0A48,2428
|
364
|
-
classiq/interface/model/quantum_expressions/arithmetic_operation.py,sha256=
|
364
|
+
classiq/interface/model/quantum_expressions/arithmetic_operation.py,sha256=HKFZci4z4QSmE8Bpwu6_6sCU1Wb-jzovrmsU1lmxjmw,3428
|
365
365
|
classiq/interface/model/quantum_expressions/quantum_expression.py,sha256=yw-sYXbaaKoUSL8oujDFBjyShxCfAQnPPX64h-Yh-_8,2118
|
366
366
|
classiq/interface/model/quantum_function_call.py,sha256=YOwmNuz7F0I7jimVjy69eGI044iXS0hAcBjBRuvhsI8,7313
|
367
367
|
classiq/interface/model/quantum_function_declaration.py,sha256=N1iccemg-xC4Cc1pPLWT3cBGYO3RIEBPVz_zlWWkLpQ,7704
|
368
|
-
classiq/interface/model/quantum_lambda_function.py,sha256=
|
369
|
-
classiq/interface/model/quantum_statement.py,sha256=
|
368
|
+
classiq/interface/model/quantum_lambda_function.py,sha256=gNrzQuQ_UKdoZXPtGjhb-L1n67gBbJmuc7A6cKUhu68,2114
|
369
|
+
classiq/interface/model/quantum_statement.py,sha256=tBWQ9ycUVCGo-9mRvYnfB1_q7zFCfCR_pTaevTXIiqY,2476
|
370
370
|
classiq/interface/model/quantum_type.py,sha256=19JjWMEU44l7C9VtsFakOZ3c3-ugQzC3_vdygrhieck,8199
|
371
|
-
classiq/interface/model/quantum_variable_declaration.py,sha256=
|
371
|
+
classiq/interface/model/quantum_variable_declaration.py,sha256=Vmx-aHnss8E_ghqX_wi4Njp-dEtYK-WwYHtHAwmGZxk,229
|
372
372
|
classiq/interface/model/repeat.py,sha256=pSq0rzSDUVQqyzlv-mV1k-Jx57KyjqjZ1KgScGFOQgE,408
|
373
373
|
classiq/interface/model/statement_block.py,sha256=LGufetnKdOjAcoEcN_r-1tYbdviklNLKz6sUqo__A-Q,2262
|
374
374
|
classiq/interface/model/validation_handle.py,sha256=wZZ0cQFwvX4GSxOXwOvISl_5qtu7xz-CrS_H8bXs57Y,1561
|
@@ -380,7 +380,7 @@ classiq/interface/pyomo_extension/inequality_expression.py,sha256=JMVE4VnMGi99KH
|
|
380
380
|
classiq/interface/pyomo_extension/pyomo_sympy_bimap.py,sha256=sE8lGR2qQDwI-a-7Mg-23UVIxICSYYmNL6LGeuRmI38,1246
|
381
381
|
classiq/interface/pyomo_extension/set_pprint.py,sha256=jlyYUHfQXwyzPQIzstnTeIK6T62BcSPn3eJdD1Qjy7E,344
|
382
382
|
classiq/interface/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
383
|
-
classiq/interface/server/global_versions.py,sha256=
|
383
|
+
classiq/interface/server/global_versions.py,sha256=YzPrPwnkBNREyCgwitxfbUCvMQPwv0MUbWCNQIBH2II,372
|
384
384
|
classiq/interface/server/routes.py,sha256=lO86jyEkYlxWRNhwrlyTAC907xfrz6rXLo1iE5dp1zk,2758
|
385
385
|
classiq/interface/source_reference.py,sha256=a-4Vdc511ux-0lDPDTRGAzouRWWtu4A3MPAfiZe_YPE,1764
|
386
386
|
classiq/model_expansions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -388,8 +388,8 @@ classiq/model_expansions/atomic_expression_functions_defs.py,sha256=dd2XZSc8eV6a
|
|
388
388
|
classiq/model_expansions/capturing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
389
389
|
classiq/model_expansions/capturing/captured_var_manager.py,sha256=IFJqmUTnB7AYvvozsRYJ63aH8VHC4I7ugAnzErvDzRU,1821
|
390
390
|
classiq/model_expansions/capturing/mangling_utils.py,sha256=3pZdaebPOFQrD-psaZLdkMmRyZUvhWBxbwg_Z3IrvgI,501
|
391
|
-
classiq/model_expansions/capturing/propagated_var_stack.py,sha256=
|
392
|
-
classiq/model_expansions/closure.py,sha256=
|
391
|
+
classiq/model_expansions/capturing/propagated_var_stack.py,sha256=BklhJW4olKbZr4UIrotdEuIyrfKqufLvcNhntqmAAR0,7066
|
392
|
+
classiq/model_expansions/closure.py,sha256=Julr67NGVgoWR3kPm11YoLdI4vDz_NaKrMcY6GsSqBo,5915
|
393
393
|
classiq/model_expansions/debug_flag.py,sha256=JWzl9FFq2CLcvTg_sh-K8Dp_xXvewsTuFKhPjTCrsrs,107
|
394
394
|
classiq/model_expansions/evaluators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
395
395
|
classiq/model_expansions/evaluators/arg_type_match.py,sha256=C7jUWpJ-mBiwIZeuLJbKZes8PmrwbnOIKWtlvCazhS4,6114
|
@@ -397,45 +397,46 @@ classiq/model_expansions/evaluators/argument_types.py,sha256=7h_cWi7PIxh2UbJghmA
|
|
397
397
|
classiq/model_expansions/evaluators/classical_expression.py,sha256=OM-lPEX9-5IW6DEVZ3GMkSZDqsVDV7WRLItOUaTOvgw,1403
|
398
398
|
classiq/model_expansions/evaluators/control.py,sha256=hVKjVzxpwJUu5ehoxl3yB9QvlCbegRXrF13OTMKQ23I,4725
|
399
399
|
classiq/model_expansions/evaluators/parameter_types.py,sha256=1pGD8BfLbtEIWsFe3ZXiVSv5jkChSGFWti2qg0_Dlwg,7929
|
400
|
-
classiq/model_expansions/evaluators/quantum_type_utils.py,sha256=
|
400
|
+
classiq/model_expansions/evaluators/quantum_type_utils.py,sha256=7md4YBouow8LojvwuAGySyZBqDARCa7YiYU3xsZq3sA,8963
|
401
401
|
classiq/model_expansions/evaluators/type_type_match.py,sha256=Z0-I_DaJ5pXXipdxL7rd64qoIk1pCsApZiBqNGjgWWA,3211
|
402
402
|
classiq/model_expansions/expression_evaluator.py,sha256=Do0DHX9sSY0uBL8_FHOMg6uLjzEoRFsxYTrG60OGGQI,4328
|
403
403
|
classiq/model_expansions/expression_renamer.py,sha256=xfS4KvFhuXO7QkJIKSuaPdrrrLY-_QJFuQ8ozWuQql0,2683
|
404
404
|
classiq/model_expansions/function_builder.py,sha256=1SDFE08LetPDVwvWfzPdWNgCn8hc9EUzZFuKLLqmv6s,6682
|
405
|
-
classiq/model_expansions/generative_functions.py,sha256=
|
406
|
-
classiq/model_expansions/interpreter.py,sha256=
|
405
|
+
classiq/model_expansions/generative_functions.py,sha256=YhiDMv08DJPx4UWND8n2bx8Il6Spns81NcMJv37CP68,8424
|
406
|
+
classiq/model_expansions/interpreter.py,sha256=FK4V1ZuzaiGdiqzFbF2eL7sZquaXv2L_cZcKJYzVXj8,14701
|
407
407
|
classiq/model_expansions/model_tables.py,sha256=_TdQztEDRTer--mItoyB2k6ECrUoLzfmKjSU2wOEUQc,3597
|
408
408
|
classiq/model_expansions/quantum_operations/__init__.py,sha256=BMruLYFsir2nU9Du9PZBcQzQsgIc-4Zpkx8CJmvbL14,1040
|
409
409
|
classiq/model_expansions/quantum_operations/bind.py,sha256=yRHOyMw3Kdkr1tJaRfPkbS6amCKl504weaWYqbVvZ0A,2631
|
410
|
-
classiq/model_expansions/quantum_operations/classicalif.py,sha256=
|
411
|
-
classiq/model_expansions/quantum_operations/control.py,sha256=
|
412
|
-
classiq/model_expansions/quantum_operations/emitter.py,sha256=
|
413
|
-
classiq/model_expansions/quantum_operations/expression_operation.py,sha256=
|
414
|
-
classiq/model_expansions/quantum_operations/inplace_binary_operation.py,sha256=
|
415
|
-
classiq/model_expansions/quantum_operations/invert.py,sha256=
|
416
|
-
classiq/model_expansions/quantum_operations/phase.py,sha256=
|
417
|
-
classiq/model_expansions/quantum_operations/power.py,sha256=
|
418
|
-
classiq/model_expansions/quantum_operations/quantum_assignment_operation.py,sha256
|
419
|
-
classiq/model_expansions/quantum_operations/quantum_function_call.py,sha256=
|
420
|
-
classiq/model_expansions/quantum_operations/repeat.py,sha256=
|
410
|
+
classiq/model_expansions/quantum_operations/classicalif.py,sha256=6SFumWVIWCTNQsng1GCkZ2zysT8aVrtwPqpwlJ6M_dQ,2151
|
411
|
+
classiq/model_expansions/quantum_operations/control.py,sha256=SibNNK8gwzBMojwmXDg--SXbqhn3PJmIB2y0sK-7rJA,10151
|
412
|
+
classiq/model_expansions/quantum_operations/emitter.py,sha256=wMuICR_CzLmaiwhS6EZWu4H864ZxTndITQC1gNRVaWA,10899
|
413
|
+
classiq/model_expansions/quantum_operations/expression_operation.py,sha256=q2EaNec3kvTw2xDVGrd36p_rHiNMaWzkR0qFC55sJDY,8182
|
414
|
+
classiq/model_expansions/quantum_operations/inplace_binary_operation.py,sha256=OoEBjjE9sXoOuV3h7p29UN6DgGywcXPVHntSLHXAUp4,11142
|
415
|
+
classiq/model_expansions/quantum_operations/invert.py,sha256=iR6ZpTyntchWb5kJFFMCC6rkBURbueJO42H7-8ljbKw,1661
|
416
|
+
classiq/model_expansions/quantum_operations/phase.py,sha256=W3qHfxs9S25yE2Ofgy9NwO5t9og6DxhqSQW8w1ptm1w,7337
|
417
|
+
classiq/model_expansions/quantum_operations/power.py,sha256=89FEo5xJkOxCP7L7Jy9MJatRbbzjVVR0oc8Q7aBzF8Q,2661
|
418
|
+
classiq/model_expansions/quantum_operations/quantum_assignment_operation.py,sha256=-WjwH-DmRbIZa4BusHl8HC7fvt7pc0U2IeU7-Mz5k-A,7485
|
419
|
+
classiq/model_expansions/quantum_operations/quantum_function_call.py,sha256=hQcOwaZV0qe7SmlqV3hdlKIcX_EKmxGOysH0lOVh9F0,729
|
420
|
+
classiq/model_expansions/quantum_operations/repeat.py,sha256=zxxKxbMqa_4zkA5x10NrDpgUqEHKId4WxLXmD4aboJk,2060
|
421
421
|
classiq/model_expansions/quantum_operations/variable_decleration.py,sha256=fRMRxctSxQFhPIhTMMVGC0F9p4iBLIMCD59G_j4Rk2Y,1196
|
422
|
-
classiq/model_expansions/quantum_operations/within_apply.py,sha256=
|
423
|
-
classiq/model_expansions/scope.py,sha256=
|
424
|
-
classiq/model_expansions/scope_initialization.py,sha256=
|
422
|
+
classiq/model_expansions/quantum_operations/within_apply.py,sha256=p2k86XDrsGjYr9HSSaXCkkG0_HoMHMscZJ9YXgh6GZs,2322
|
423
|
+
classiq/model_expansions/scope.py,sha256=Y3uxM1FV1hg97oPDhKfUaFA6_XkPXAizDQVFXjAdO-g,7615
|
424
|
+
classiq/model_expansions/scope_initialization.py,sha256=JxTvjVudqe6O1oUk3suw6FjRXlmhilmgAX1t-KkttwU,5677
|
425
425
|
classiq/model_expansions/sympy_conversion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
426
426
|
classiq/model_expansions/sympy_conversion/arithmetics.py,sha256=7ZKg1C92wUdxtFhrT4VuI9mNvH2a1z1R8lbWYFhYczc,1116
|
427
|
-
classiq/model_expansions/sympy_conversion/expression_to_sympy.py,sha256=
|
427
|
+
classiq/model_expansions/sympy_conversion/expression_to_sympy.py,sha256=PAsomNL5UeIdEVaZeVXGytrx5Qf638SKFWkq2MorkKc,5646
|
428
428
|
classiq/model_expansions/sympy_conversion/sympy_to_python.py,sha256=v1cLhbr4qtZe0NMLjiwy60JjH5dC56T3Gx2Qh_n0O2M,3779
|
429
429
|
classiq/model_expansions/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
430
430
|
classiq/model_expansions/utils/counted_name_allocator.py,sha256=9LPLBm-4ZrpC_0r1rbogyF11FnLaGCUyzwWpcBJoSmA,297
|
431
431
|
classiq/model_expansions/visitors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
432
432
|
classiq/model_expansions/visitors/boolean_expression_transformers.py,sha256=a8ITXY48uROZFd9MF8tXdXs14Uxh8XbBpuvRXvRehjY,8067
|
433
|
-
classiq/model_expansions/visitors/variable_references.py,sha256=
|
433
|
+
classiq/model_expansions/visitors/variable_references.py,sha256=Og9Ifj9mBqdNfdCN5YKy14oFmxVaY3FDKRtfgWmCVbQ,4096
|
434
434
|
classiq/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
435
435
|
classiq/qmod/__init__.py,sha256=ktAnNYCn6UJGvpMjwEjed3MKtdOwpevBD3JPErM7lqs,842
|
436
|
-
classiq/qmod/builtins/__init__.py,sha256=
|
436
|
+
classiq/qmod/builtins/__init__.py,sha256=U2wBnL0byv6had1Fr0YUfoP0SDw0yC8_PU1KPcOPcp0,1271
|
437
437
|
classiq/qmod/builtins/classical_execution_primitives.py,sha256=VlA4Wam35v2wMppZ5wCI01uQOSQIzT948Dmn3URBZPk,3244
|
438
438
|
classiq/qmod/builtins/classical_functions.py,sha256=sOMYm_vU24mAGgR63qmJ5eMTgpacXCRIhNEXa6pl0Q4,1914
|
439
|
+
classiq/qmod/builtins/constants.py,sha256=FURSVt0dlIAw_xkGMyj89z4eub7vUdvUrPzaLTGUQxk,222
|
439
440
|
classiq/qmod/builtins/enums.py,sha256=JzfANJT4Z1Gy8io4JjCnez4t97mxBjT1K-ij2Cli9kQ,3417
|
440
441
|
classiq/qmod/builtins/functions/__init__.py,sha256=xpAaTC4wrHh0WmykWsvf_5IdPPxJxWDoHror_rq20kg,5352
|
441
442
|
classiq/qmod/builtins/functions/amplitude_estimation.py,sha256=nO2HlzVgZw3621YUr1-4AflAWDm5xTBaTSjQ6o9yjKA,1562
|
@@ -456,37 +457,38 @@ classiq/qmod/builtins/functions/qpe.py,sha256=zemPR03SszqGLbWlwHI8ZrdRuTqcgnXdHG
|
|
456
457
|
classiq/qmod/builtins/functions/qsvm.py,sha256=j5UbMWfl2UNtBewjSWgXq-fvHuAznpINw_b5-_XEKdU,586
|
457
458
|
classiq/qmod/builtins/functions/qsvt.py,sha256=aSePhlqVql8IHfmhsGY6vMucJi3htoUNKvLJYOQvIGM,6635
|
458
459
|
classiq/qmod/builtins/functions/standard_gates.py,sha256=fsljKq_Y8aI_JYN4Gxf23jPB8FCVrDRmt3Aqj5Jb1DM,22349
|
459
|
-
classiq/qmod/builtins/functions/state_preparation.py,sha256=
|
460
|
+
classiq/qmod/builtins/functions/state_preparation.py,sha256=Vv_cM80h--3VAv9F4dW7jqWmEmu7hf9Yan7-9HaDaaU,15628
|
460
461
|
classiq/qmod/builtins/functions/swap_test.py,sha256=DGWCkJNvunUGR5Q_eYxKOMO21elfD8kQkiNlQpcerOU,957
|
461
|
-
classiq/qmod/builtins/operations.py,sha256=
|
462
|
+
classiq/qmod/builtins/operations.py,sha256=Clbx-sxfdEH4dX8Zrfb7vHVeDXV8-CWjhZfMe8qoDf0,10790
|
462
463
|
classiq/qmod/builtins/structs.py,sha256=pdjNKFAhxLNzVdz4bhONO4PwvfI_W7Z7Skjgqt47mxw,2913
|
463
464
|
classiq/qmod/cfunc.py,sha256=quwJdgYRgqI2C13SRrRunLi-Kuf7nCAk2-O2B46QtoY,1093
|
464
465
|
classiq/qmod/classical_function.py,sha256=DuPzfK--_6pR6JcuvkWoNx3jRHkRVskqyTOi4qbejr8,1221
|
465
466
|
classiq/qmod/cparam.py,sha256=wai8PyfS6QCJ8_WLck2nRZrtuEXYg1cogj4CQ_EZKP4,1182
|
466
|
-
classiq/qmod/create_model_function.py,sha256=
|
467
|
+
classiq/qmod/create_model_function.py,sha256=zAOz1T8_o6bzlBaBF0Q1AWkbzDr86ui3WXhaW_S3lYU,7275
|
467
468
|
classiq/qmod/declaration_inferrer.py,sha256=4GEh_qzwqR2Rj_B-oBAtENCPDSq92PKcahc7I4vghG0,7003
|
468
469
|
classiq/qmod/expression_query.py,sha256=EkZPG-iJGcar2zqAwji0QtPKjapO6RL3nz8YEuhxyGg,1642
|
469
|
-
classiq/qmod/generative.py,sha256
|
470
|
+
classiq/qmod/generative.py,sha256=--557jt22gVKJROwcSA7AzQBdgNl9zMXGEfRJVI6W1k,1561
|
470
471
|
classiq/qmod/model_state_container.py,sha256=Csm3DbdzGsNG4hQyT8o8Hrwu5CqU3aeIYqlWu15saK4,706
|
471
472
|
classiq/qmod/native/__init__.py,sha256=00ZlOKotzZ5MPkwwWNTnwrPeNRTFurFNJgueixP6BVo,151
|
472
473
|
classiq/qmod/native/expression_to_qmod.py,sha256=p_WHipErHWbIDZkRPT487xik_49MheasCTiQvHVam2Y,7134
|
473
|
-
classiq/qmod/native/pretty_printer.py,sha256=
|
474
|
+
classiq/qmod/native/pretty_printer.py,sha256=MnsSSA2hmZ_7lkB0ZjhwRy18zVwEEM0URgIP9CFv41U,15323
|
474
475
|
classiq/qmod/pretty_print/__init__.py,sha256=TY7bQpDw75-oLUinUoCUMQnbjUcFzcFqHO1sEK-DgPE,157
|
475
476
|
classiq/qmod/pretty_print/expression_to_python.py,sha256=e9PG553YlTh1R7ywRFYoMyMIsh1oehWU3n0XN8Mj6GY,7471
|
476
|
-
classiq/qmod/pretty_print/pretty_printer.py,sha256=
|
477
|
+
classiq/qmod/pretty_print/pretty_printer.py,sha256=cO0fVbDoWPfMmRr9WwgW8zAKp9rlaHKfCi1pyXTIIXo,21488
|
477
478
|
classiq/qmod/python_classical_type.py,sha256=kodOLRAm4UTnrRcHGCrUKJGMJBrPmtLEvE4K5SSKkgw,2404
|
478
479
|
classiq/qmod/qfunc.py,sha256=R9Dif90S-RfOnkFWA53p-ZuG1MFVGJoNuMKPC1oULuM,1304
|
479
|
-
classiq/qmod/qmod_constant.py,sha256=
|
480
|
+
classiq/qmod/qmod_constant.py,sha256=ZGYhlN4sN4opm91LGFxN7eShcj5mTlDH3DJXpazW-Zk,3857
|
480
481
|
classiq/qmod/qmod_parameter.py,sha256=JGdZJF7_YGK8Oh2D2dJPNyBEXK2NUpeuAV6cc_GoNWU,4221
|
481
|
-
classiq/qmod/qmod_variable.py,sha256=
|
482
|
+
classiq/qmod/qmod_variable.py,sha256=T2s0lq9T9tUBAjCTbu8SXcMIYWNAM1pLIXViNjw4w6A,24042
|
482
483
|
classiq/qmod/quantum_callable.py,sha256=sthlH5UJyJsdOxpCW3_EW3JFIYd0r1K3Zec1CDbC2-0,2451
|
483
|
-
classiq/qmod/quantum_expandable.py,sha256=
|
484
|
+
classiq/qmod/quantum_expandable.py,sha256=psApkft5bsRpfVMfMcLncaHrGG5B_Vu0RHC61puyeDM,15221
|
484
485
|
classiq/qmod/quantum_function.py,sha256=Il3eFRJzfJoPVep68PBM_7nL8Q3l6gVFtDWZxc9CZvY,7378
|
485
486
|
classiq/qmod/semantics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
486
487
|
classiq/qmod/semantics/annotation.py,sha256=vjEsS1IEXkKXMP3UO-Fh4CUomQI7hqWimonZHtwMQek,1246
|
487
488
|
classiq/qmod/semantics/error_manager.py,sha256=GYKC61JdKlFrD2SDo7s4Yrfts6SV18PTk6l8tJte2mw,2768
|
488
|
-
classiq/qmod/semantics/static_semantics_visitor.py,sha256=
|
489
|
+
classiq/qmod/semantics/static_semantics_visitor.py,sha256=mmZ2IRBoqT_SrsZFQsX1Wl4WBTKHDuEMP96TCFC8kkE,15852
|
489
490
|
classiq/qmod/semantics/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
491
|
+
classiq/qmod/semantics/validation/constants_validation.py,sha256=-dHaLc4O73y2a1aiwe7O0t-Ai8S1DRSA1oWlaocn23s,643
|
490
492
|
classiq/qmod/semantics/validation/func_call_validation.py,sha256=SwQuGO0A84LKJ9TgzMxYOIbwpTnhH6M-dDjoV8Dc4MQ,3806
|
491
493
|
classiq/qmod/semantics/validation/handle_validation.py,sha256=ZWfW41AigrFJDiTY3hevh0MYix_hkZGRcoPuUiKplSs,3034
|
492
494
|
classiq/qmod/semantics/validation/types_validation.py,sha256=cuefLq7jC6rm-D5nLhoGr04kxvBhjmzvuZ0QfaCWfQ0,5061
|
@@ -498,6 +500,6 @@ classiq/qmod/utilities.py,sha256=z_VnIRmOYTWjJp2UlOcWK0rQRtMqysmP_Gr6WYY_nak,273
|
|
498
500
|
classiq/qmod/write_qmod.py,sha256=SO7hdBdO31lTzyeaJ-Htyma-aJmrbBNtABNEB2llI4Q,1818
|
499
501
|
classiq/show.py,sha256=GyxceOzWrnVC9KvsLdHJbxycD9WkcQkkhOSw45P6CPo,1428
|
500
502
|
classiq/synthesis.py,sha256=wBk5iFCH2Bw9AvVPzGvTI96zjQXw6QpKRN9VZxc_Xl0,3350
|
501
|
-
classiq-0.
|
502
|
-
classiq-0.
|
503
|
-
classiq-0.
|
503
|
+
classiq-0.48.1.dist-info/METADATA,sha256=cZD-gt-m6UXPAiUfRLq3ecmGYHdOHOuDK-gIlg1Cgeo,3458
|
504
|
+
classiq-0.48.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
505
|
+
classiq-0.48.1.dist-info/RECORD,,
|
File without changes
|