luna-quantum 1.0.4rc4__cp312-cp312-macosx_11_0_arm64.whl → 1.0.5__cp312-cp312-macosx_11_0_arm64.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 luna-quantum might be problematic. Click here for more details.

Files changed (27) hide show
  1. luna_quantum/_core.cpython-312-darwin.so +0 -0
  2. luna_quantum/_core.pyi +56 -2
  3. luna_quantum/client/controllers/luna_platform_client.py +122 -21
  4. luna_quantum/client/controllers/luna_q.py +6 -1
  5. luna_quantum/client/controllers/luna_solve.py +5 -1
  6. luna_quantum/client/interfaces/services/service_i.py +20 -0
  7. luna_quantum/client/rest_client/info_rest_client.py +1 -3
  8. luna_quantum/factories/luna_solve_client_factory.py +28 -3
  9. luna_quantum/solve/domain/abstract/luna_algorithm.py +5 -3
  10. luna_quantum/solve/domain/model_metadata.py +3 -1
  11. luna_quantum/solve/domain/solve_job.py +12 -4
  12. luna_quantum/solve/interfaces/algorithm_i.py +3 -1
  13. luna_quantum/solve/parameters/algorithms/__init__.py +4 -0
  14. luna_quantum/solve/parameters/algorithms/lq_fda/__init__.py +9 -0
  15. luna_quantum/solve/parameters/algorithms/lq_fda/fujits_da_base.py +85 -0
  16. luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_cpu.py +125 -0
  17. luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_v3c.py +155 -0
  18. luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_v4.py +155 -0
  19. luna_quantum/solve/parameters/backends/__init__.py +2 -0
  20. luna_quantum/solve/parameters/backends/fda.py +17 -0
  21. luna_quantum/transformations.pyi +5 -1
  22. luna_quantum/util/pretty_base.py +1 -1
  23. {luna_quantum-1.0.4rc4.dist-info → luna_quantum-1.0.5.dist-info}/METADATA +1 -1
  24. {luna_quantum-1.0.4rc4.dist-info → luna_quantum-1.0.5.dist-info}/RECORD +27 -21
  25. {luna_quantum-1.0.4rc4.dist-info → luna_quantum-1.0.5.dist-info}/WHEEL +1 -1
  26. {luna_quantum-1.0.4rc4.dist-info → luna_quantum-1.0.5.dist-info}/licenses/LICENSE +0 -0
  27. {luna_quantum-1.0.4rc4.dist-info → luna_quantum-1.0.5.dist-info}/licenses/NOTICE +0 -0
@@ -0,0 +1,125 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import Literal
4
+
5
+ from pydantic import Field
6
+
7
+ from .fujits_da_base import FujitsuDABase
8
+
9
+
10
+ class FujitsuDACpu(FujitsuDABase):
11
+ r"""
12
+ Parameters for the Fujitsu Digital Annealer (CPU).
13
+
14
+ Attributes
15
+ ----------
16
+ optimization_method: Literal["annealing", "parallel_tempering"]
17
+ Algorithm to use for optimization:
18
+ - "annealing": Standard simulated annealing with gradual cooling
19
+ - "parallel_tempering": Simultaneous runs at different temperatures with
20
+ periodic state exchanges, effective for complex energy landscapes
21
+ Default is "annealing".
22
+ number_runs: int
23
+ Number of stochastically independent runs. Default: 2, Min: 1, Max: 128
24
+ number_replicas:
25
+ Number of replicas in parallel tempering. Default: 5, Min: 5, Max: 128
26
+ number_iterations: int
27
+ Total number of iterations per run. Default: 1_000, Min: 1, Max: 100_000_000
28
+ temperature_sampling: bool
29
+ Temperatures. Default: True
30
+ temperature_start: float
31
+ Initial temperature for the annealing process. Higher values enable more
32
+ exploration initially. Default is 1000.0. Range: [0.0, 1e20].
33
+ temperature_end: float
34
+ Final temperature for the annealing process. Lower values enforce more
35
+ exploitation in final phases. Default is 1.0. Range: [0.0, 1e20].
36
+ temperature_mode: int
37
+ Cooling curve mode for temperature decay:
38
+ - 0: Exponential cooling - Reduce temperature by factor
39
+ :math:`(1-temperature\\_decay)` every ``temperature_interval`` steps
40
+ - 1: Inverse cooling - Reduce temperature by factor
41
+ :math:`(1-temperature\\_decay*temperature)` every ``temperature_interval``
42
+ steps
43
+ - 2: Inverse root cooling - Reduce temperature by factor
44
+ :math:`(1-temperature\\_decay*temperature^2)` every
45
+ ``temperature_interval`` steps.
46
+ Default is 0 (exponential).
47
+ temperature_interval: int
48
+ Number of iterations between temperature adjustments. Larger values
49
+ allow more exploration at each temperature. Default is 1. Range: [1, 1e20].
50
+ offset_increase_rate: float
51
+ Rate at which dynamic offset increases when no bit is selected.
52
+ Set to 0.0 to switch off dynamic energy feature.
53
+ Helps escape plateaus in the energy landscape. Default is 5.0.
54
+ Range: [0.0, 1e20].
55
+ pt_temperature_model: Literal['Linear', 'Exponential', 'Hukushima']
56
+ Temperature model for furnace temperature distribution for parallel tempering
57
+ process. Default: 'Exponential'
58
+ pt_replica_exchange_model: Literal['Neighbours', 'Far jump']
59
+ Select replica exchange model for parallel tempering process.
60
+ Default: "Neighbours"
61
+ solution_mode: Literal["QUICK", "COMPLETE"]
62
+ Determines solution reporting strategy:
63
+ - "QUICK": Return only the overall best solution (faster)
64
+ - "COMPLETE": Return best solutions from all runs (more diverse)
65
+ Default is "COMPLETE", providing more solution options.
66
+ scaling_action: Literal["NOTHING", "SCALING", "AUTO_SCALING"]
67
+ Method for scaling ``qubo`` and determining temperatures:
68
+ - "NOTHING": No action (use parameters exactly as specified)
69
+ - "SCALING": ``scaling_factor`` is multiplied to ``qubo``,
70
+ ``temperature_start``, ``temperature_end`` and ``offset_increase_rate``.
71
+ - "AUTO_SCALING": A maximum scaling factor w.r.t. ``scaling_bit_precision``
72
+ is multiplied to ``qubo``, ``temperature_start``, ``temperature_end`` and
73
+ ``offset_increase_rate``.
74
+ scaling_factor: int | float
75
+ Multiplicative factor applied to model coefficients, temperatures, and other
76
+ parameters: the ``scaling_factor`` for ``qubo``, ``temperature_start``,
77
+ ``temperature_end`` and ``offset_increase_rate``.
78
+ Higher values can improve numerical precision but may lead to overflow.
79
+ Default is 1.0 (no scaling).
80
+ scaling_bit_precision: int
81
+ Maximum bit precision to use when scaling. Determines the maximum allowable
82
+ coefficient magnitude. Default is 64, using full double precision.
83
+ random_seed: Union[int, None]
84
+ Seed for random number generation to ensure reproducible results.
85
+ Must be between 0 and 9_999. Default is None (random seed).
86
+ penalty_factor: float
87
+ Penalty factor used to scale the equality constraint penalty function,
88
+ default 1.0.
89
+ inequality_factor: int
90
+ Penalty factor used to scale the inequality constraints, default 1.
91
+ remove_ohg_from_penalty: bool
92
+ If equality constraints, identified to be One-Hot constraints are only
93
+ considered within one-hot groups (`remove_ohg_from_penalty=True`), i.e.,
94
+ identified one-hot constraints are not added to the penalty function,
95
+ default True.
96
+ """
97
+
98
+ optimization_method: Literal["annealing", "parallel_tempering"] = "annealing"
99
+ number_runs: int = Field(default=2, ge=1, le=128)
100
+ number_replicas: int = Field(default=5, ge=5, le=128)
101
+ number_iterations: int = Field(default=1_000, ge=1, le=100_000_000)
102
+ temperature_sampling: bool = True
103
+ temperature_start: float = Field(default=1_000.0, ge=0.0, le=1e20)
104
+ temperature_end: float = Field(default=1.0, ge=0.0, le=1e20)
105
+ temperature_mode: int = 0
106
+ temperature_interval: int = Field(default=1, ge=1, le=int(1e20))
107
+ offset_increase_rate: float = Field(default=5.0, ge=0.0, le=1e20)
108
+ pt_temperature_model: Literal["Linear", "Exponential", "Hukushima"] = "Exponential"
109
+ pt_replica_exchange_model: Literal["Neighbours", "Far jump"] = "Neighbours"
110
+ solution_mode: Literal["QUICK", "COMPLETE"] = "COMPLETE"
111
+
112
+ @property
113
+ def algorithm_name(self) -> str:
114
+ """
115
+ Returns the name of the algorithm.
116
+
117
+ This abstract property method is intended to be overridden by subclasses.
118
+ It should provide the name of the algorithm being implemented.
119
+
120
+ Returns
121
+ -------
122
+ str
123
+ The name of the algorithm.
124
+ """
125
+ return "FDACPU"
@@ -0,0 +1,155 @@
1
+ from pydantic import Field
2
+
3
+ from .fujits_da_base import FujitsuDABase
4
+
5
+
6
+ class FujitsuDAv3c(FujitsuDABase):
7
+ """
8
+ Parameters for the Fujitsu Digital Annealer (v3c).
9
+
10
+ Attributes
11
+ ----------
12
+ time_limit_sec: int | None
13
+ Maximum running time of DA in seconds. Specifies the upper limit of running
14
+ time of DA. Time_limit_sec should be selected according to problem hardness
15
+ and size (number of bits). Min: 1, Max: 3600
16
+ target_energy: int | None
17
+ Threshold energy for fast exit. This may not work correctly if the specified
18
+ value is larger than its max value or lower than its min value.
19
+ Min: -99_999_999_999, Max: 99_999_999_999
20
+ num_group: int
21
+ Number of independent optimization processes. Increasing the number of
22
+ independent optimization processes leads to better coverage of the search
23
+ space. Note: Increasing this number requires to also increase time_limit_sec
24
+ such that the search time for each process is sufficient.
25
+ Default: 1, Min: 1, Max: 16
26
+ num_solution: int
27
+ Number of solutions maintained and updated by each optimization process.
28
+ Default: 16, Min: 1, Max: 1024
29
+ num_output_solution: int
30
+ Maximal number of the best solutions returned by each optimization.
31
+ Total number of results is ``num_solution`` * ``num_group``.
32
+ Default: 5, Min: 1, Max: 1024
33
+ gs_num_iteration_factor: int
34
+ Maximal number of iterations in one epoch of the global search in each
35
+ optimization is ``gs_num_iteration_factor`` * *number of bits*.
36
+ Default: 5, Min: 0, Max: 100
37
+ gs_num_iteration_cl: int
38
+ Maximal number of iterations without improvement in one epoch of the global
39
+ search in each optimization before terminating and continuing with the next
40
+ epoch. For problems with very deep local minima having a very low value is
41
+ helpful. Default: 800, Min: 0, Max: 1000000
42
+ gs_ohs_xw1h_num_iteration_factor: int
43
+ Maximal number of iterations in one epoch of the global search in each
44
+ optimization is ``gs_ohs_xw1h_num_iteration_factor`` * *number of bits*.
45
+ Only used when 1Hot search is defined. Default: 3, Min: 0, Max: 100
46
+ gs_ohs_xw1h_num_iteration_cl: int
47
+ Maximal number of iterations without improvement in one epoch of the global
48
+ search in each optimization before terminating and continuing with the next
49
+ epoch. For problems with very deep local minima having a very low value is
50
+ helpful. Only used when 1Hot search is defined.
51
+ Default: 100, Min: 0, Max: 1000000
52
+ ohs_xw1h_internal_penalty: int | str
53
+ Mode of 1hot penalty constraint generation.
54
+ - 0: internal penalty generation off: 1hot constraint as part of penalty
55
+ polynomial required
56
+ - 1: internal penalty generation on: 1hot constraint not as part of penalty
57
+ polynomial required
58
+ If 1way 1hot constraint or a 2way 1hot constraint is specified,
59
+ ``ohs_xw1h_internal_penalty`` = 1 is recommended.
60
+ Default: 0, Min: 0, Max: 1
61
+ gs_penalty_auto_mode: int
62
+ Parameter to choose whether to automatically incrementally adapt
63
+ ``gs_penalty_coef`` to the optimal value.
64
+ - 0: Use ``gs_penalty_coef`` as the fixed factor to weight the penalty
65
+ polynomial during optimization.
66
+ - 1: Start with ``gs_penalty_coef`` as weight factor for penalty polynomial
67
+ and automatically and incrementally increase this factor during
68
+ optimization by multiplying ``gs_penalty_inc_rate`` / 100 repeatedly
69
+ until ``gs_max_penalty_coef`` is reached or the penalty energy iszero.
70
+ Default: 1, Min: 0, Max: 1
71
+ gs_penalty_coef: int
72
+ Factor to weight the penalty polynomial. If ``gs_penalty_auto_mode`` is 0,
73
+ this value does not change. If ``gs_penalty_auto_mode`` is 1, this initial
74
+ weight factor is repeatedly increased by ``gs_penalty_inc_rate`` until
75
+ ``gs_max_penalty_coef`` is reached or the penalty energy is zero.
76
+ Default: 1, Min: 1, Max: 9_223_372_036_854_775_807
77
+ gs_penalty_inc_rate: int
78
+ Only used if ``gs_penalty_auto_mode`` is 1. In this case, the initial weight
79
+ factor ``gs_penalty_coef`` for the penalty polynomial is repeatedly
80
+ increased by multiplying ``gs_penalty_inc_rate`` / 100 until
81
+ ``gs_max_penalty_coef`` is reached or the penalty energy is zero.
82
+ Default: 150, Min: 100, Max: 200
83
+ gs_max_penalty_coef: int
84
+ Maximal value for the penalty coefficient. If ``gs_penalty_auto_mode`` is 0,
85
+ this is the maximal value for ``gs_penalty_coef``.
86
+ If ``gs_penalty_auto_mode`` is 1, this is the maximal value to which
87
+ ``gs_penalty_coef`` can be increased during the automatic adjustment.
88
+ If ``gs_max_penalty_coef`` is set to 0, then the maximal penalty coefficient
89
+ is 2^63 - 1.
90
+ Default: 0, Min: 0, Max: 9_223_372_036_854_775_807
91
+
92
+
93
+ scaling_action: Literal["NOTHING", "SCALING", "AUTO_SCALING"]
94
+ Method for scaling ``qubo`` and determining temperatures:
95
+ - "NOTHING": No action (use parameters exactly as specified)
96
+ - "SCALING": ``scaling_factor`` is multiplied to ``qubo``,
97
+ ``temperature_start``, ``temperature_end`` and ``offset_increase_rate``.
98
+ - "AUTO_SCALING": A maximum scaling factor w.r.t. ``scaling_bit_precision``
99
+ is multiplied to ``qubo``, ``temperature_start``, ``temperature_end`` and
100
+ ``offset_increase_rate``.
101
+ scaling_factor: int | float
102
+ Multiplicative factor applied to model coefficients, temperatures, and other
103
+ parameters: the ``scaling_factor`` for ``qubo``, ``temperature_start``,
104
+ ``temperature_end`` and ``offset_increase_rate``.
105
+ Higher values can improve numerical precision but may lead to overflow.
106
+ Default is 1.0 (no scaling).
107
+ scaling_bit_precision: int
108
+ Maximum bit precision to use when scaling. Determines the maximum allowable
109
+ coefficient magnitude. Default is 64, using full double precision.
110
+ random_seed: Union[int, None]
111
+ Seed for random number generation to ensure reproducible results.
112
+ Must be between 0 and 9_999. Default is None (random seed).
113
+ penalty_factor: float
114
+ Penalty factor used to scale the equality constraint penalty function,
115
+ default 1.0.
116
+ inequality_factor: int
117
+ Penalty factor used to scale the inequality constraints, default 1.
118
+ remove_ohg_from_penalty: bool
119
+ If equality constraints, identified to be One-Hot constraints are only
120
+ considered within one-hot groups (`remove_ohg_from_penalty=True`),
121
+ i.e., identified one-hot constraints are not added to the penalty function,
122
+ default True.
123
+ """
124
+
125
+ time_limit_sec: int | None = Field(default=None, ge=1, le=3600)
126
+ target_energy: int | None = Field(
127
+ default=None, ge=-99_999_999_999, le=99_999_999_999
128
+ )
129
+ num_group: int = Field(default=1, ge=1, le=16)
130
+ num_solution: int = Field(default=16, ge=1, le=1024)
131
+ num_output_solution: int = Field(default=5, ge=1, le=1024)
132
+ gs_num_iteration_factor: int = Field(default=5, ge=0, le=100)
133
+ gs_num_iteration_cl: int = Field(default=800, ge=0, le=1_000_000)
134
+ gs_ohs_xw1h_num_iteration_factor: int = Field(default=3, ge=0, le=100)
135
+ gs_ohs_xw1h_num_iteration_cl: int = Field(default=100, ge=0, le=1_000_000)
136
+ ohs_xw1h_internal_penalty: int = Field(default=0, ge=0, le=1)
137
+ gs_penalty_auto_mode: int = Field(default=1, ge=0, le=1)
138
+ gs_penalty_coef: int = Field(default=1, ge=1, le=2**63 - 1)
139
+ gs_penalty_inc_rate: int = Field(default=150, ge=100, le=200)
140
+ gs_max_penalty_coef: int = Field(default=0, ge=0, le=2**63 - 1)
141
+
142
+ @property
143
+ def algorithm_name(self) -> str:
144
+ """
145
+ Returns the name of the algorithm.
146
+
147
+ This abstract property method is intended to be overridden by subclasses.
148
+ It should provide the name of the algorithm being implemented.
149
+
150
+ Returns
151
+ -------
152
+ str
153
+ The name of the algorithm.
154
+ """
155
+ return "FDAV3C"
@@ -0,0 +1,155 @@
1
+ from pydantic import Field
2
+
3
+ from .fujits_da_base import FujitsuDABase
4
+
5
+
6
+ class FujitsuDAv4(FujitsuDABase):
7
+ """
8
+ Parameters for the Fujitsu Digital Annealer (v4).
9
+
10
+ Attributes
11
+ ----------
12
+ time_limit_sec: int | None
13
+ Maximum running time of DA in seconds. Specifies the upper limit of running
14
+ time of DA. Time_limit_sec should be selected according to problem hardness
15
+ and size (number of bits). Min: 1, Max: 3600
16
+ target_energy: int | None
17
+ Threshold energy for fast exit. This may not work correctly if the specified
18
+ value is larger than its max value or lower than its min value.
19
+ Min: -99_999_999_999, Max: 99_999_999_999
20
+ num_group: int
21
+ Number of independent optimization processes. Increasing the number of
22
+ independent optimization processes leads to better coverage of the search
23
+ space. Note: Increasing this number requires to also increase time_limit_sec
24
+ such that the search time for each process is sufficient.
25
+ Default: 1, Min: 1, Max: 16
26
+ num_solution: int
27
+ Number of solutions maintained and updated by each optimization process.
28
+ Default: 16, Min: 1, Max: 1024
29
+ num_output_solution: int
30
+ Maximal number of the best solutions returned by each optimization.
31
+ Total number of results is ``num_solution`` * ``num_group``.
32
+ Default: 5, Min: 1, Max: 1024
33
+ gs_num_iteration_factor: int
34
+ Maximal number of iterations in one epoch of the global search in each
35
+ optimization is ``gs_num_iteration_factor`` * *number of bits*.
36
+ Default: 5, Min: 0, Max: 100
37
+ gs_num_iteration_cl: int
38
+ Maximal number of iterations without improvement in one epoch of the global
39
+ search in each optimization before terminating and continuing with the next
40
+ epoch. For problems with very deep local minima having a very low value is
41
+ helpful. Default: 800, Min: 0, Max: 1000000
42
+ gs_ohs_xw1h_num_iteration_factor: int
43
+ Maximal number of iterations in one epoch of the global search in each
44
+ optimization is ``gs_ohs_xw1h_num_iteration_factor`` * *number of bits*.
45
+ Only used when 1Hot search is defined. Default: 3, Min: 0, Max: 100
46
+ gs_ohs_xw1h_num_iteration_cl: int
47
+ Maximal number of iterations without improvement in one epoch of the global
48
+ search in each optimization before terminating and continuing with the next
49
+ epoch. For problems with very deep local minima having a very low value is
50
+ helpful. Only used when 1Hot search is defined.
51
+ Default: 100, Min: 0, Max: 1000000
52
+ ohs_xw1h_internal_penalty: int | str
53
+ Mode of 1hot penalty constraint generation.
54
+ - 0: internal penalty generation off: 1hot constraint as part of penalty
55
+ polynomial required
56
+ - 1: internal penalty generation on: 1hot constraint not as part of penalty
57
+ polynomial required
58
+ If 1way 1hot constraint or a 2way 1hot constraint is specified,
59
+ ``ohs_xw1h_internal_penalty`` = 1 is recommended.
60
+ Default: 0, Min: 0, Max: 1
61
+ gs_penalty_auto_mode: int
62
+ Parameter to choose whether to automatically incrementally adapt
63
+ ``gs_penalty_coef`` to the optimal value.
64
+ - 0: Use ``gs_penalty_coef`` as the fixed factor to weight the penalty
65
+ polynomial during optimization.
66
+ - 1: Start with ``gs_penalty_coef`` as weight factor for penalty polynomial
67
+ and automatically and incrementally increase this factor during
68
+ optimization by multiplying ``gs_penalty_inc_rate`` / 100 repeatedly
69
+ until ``gs_max_penalty_coef`` is reached or the penalty energy is zero.
70
+ Default: 1, Min: 0, Max: 1
71
+ gs_penalty_coef: int
72
+ Factor to weight the penalty polynomial. If ``gs_penalty_auto_mode`` is 0,
73
+ this value does not change. If ``gs_penalty_auto_mode`` is 1, this initial
74
+ weight factor is repeatedly increased by ``gs_penalty_inc_rate`` until
75
+ ``gs_max_penalty_coef`` is reached or the penalty energy is zero.
76
+ Default: 1, Min: 1, Max: 9_223_372_036_854_775_807
77
+ gs_penalty_inc_rate: int
78
+ Only used if ``gs_penalty_auto_mode`` is 1. In this case, the initial weight
79
+ factor ``gs_penalty_coef`` for the penalty polynomial is repeatedly
80
+ increased by multiplying ``gs_penalty_inc_rate`` / 100 until
81
+ ``gs_max_penalty_coef`` is reached or the penalty energy is zero.
82
+ Default: 150, Min: 100, Max: 200
83
+ gs_max_penalty_coef: int
84
+ Maximal value for the penalty coefficient. If ``gs_penalty_auto_mode`` is 0,
85
+ this is the maximal value for ``gs_penalty_coef``.
86
+ If ``gs_penalty_auto_mode`` is 1, this is the maximal value to which
87
+ ``gs_penalty_coef`` can be increased during the automatic adjustment.
88
+ If ``gs_max_penalty_coef`` is set to 0, then the maximal penalty coefficient
89
+ is 2^63 - 1.
90
+ Default: 0, Min: 0, Max: 9_223_372_036_854_775_807
91
+
92
+
93
+ scaling_action: Literal["NOTHING", "SCALING", "AUTO_SCALING"]
94
+ Method for scaling ``qubo`` and determining temperatures:
95
+ - "NOTHING": No action (use parameters exactly as specified)
96
+ - "SCALING": ``scaling_factor`` is multiplied to ``qubo``,
97
+ ``temperature_start``, ``temperature_end`` and ``offset_increase_rate``.
98
+ - "AUTO_SCALING": A maximum scaling factor w.r.t. ``scaling_bit_precision``
99
+ is multiplied to ``qubo``, ``temperature_start``, ``temperature_end`` and
100
+ ``offset_increase_rate``.
101
+ scaling_factor: int | float
102
+ Multiplicative factor applied to model coefficients, temperatures, and other
103
+ parameters: the ``scaling_factor`` for ``qubo``, ``temperature_start``,
104
+ ``temperature_end`` and ``offset_increase_rate``.
105
+ Higher values can improve numerical precision but may lead to overflow.
106
+ Default is 1.0 (no scaling).
107
+ scaling_bit_precision: int
108
+ Maximum bit precision to use when scaling. Determines the maximum allowable
109
+ coefficient magnitude. Default is 64, using full double precision.
110
+ random_seed: Union[int, None]
111
+ Seed for random number generation to ensure reproducible results.
112
+ Must be between 0 and 9_999. Default is None (random seed).
113
+ penalty_factor: float
114
+ Penalty factor used to scale the equality constraint penalty function,
115
+ default 1.0.
116
+ inequality_factor: int
117
+ Penalty factor used to scale the inequality constraints, default 1.
118
+ remove_ohg_from_penalty: bool
119
+ If equality constraints, identified to be One-Hot constraints are only
120
+ considered within one-hot groups (`remove_ohg_from_penalty=True`),
121
+ i.e., identified one-hot constraints are not added to
122
+ the penalty function, default True.
123
+ """
124
+
125
+ time_limit_sec: int | None = Field(default=None, ge=1, le=3600)
126
+ target_energy: int | None = Field(
127
+ default=None, ge=-99_999_999_999, le=99_999_999_999
128
+ )
129
+ num_group: int = Field(default=1, ge=1, le=16)
130
+ num_solution: int = Field(default=16, ge=1, le=1024)
131
+ num_output_solution: int = Field(default=5, ge=1, le=1024)
132
+ gs_num_iteration_factor: int = Field(default=5, ge=0, le=100)
133
+ gs_num_iteration_cl: int = Field(default=800, ge=0, le=1_000_000)
134
+ gs_ohs_xw1h_num_iteration_factor: int = Field(default=3, ge=0, le=100)
135
+ gs_ohs_xw1h_num_iteration_cl: int = Field(default=100, ge=0, le=1_000_000)
136
+ ohs_xw1h_internal_penalty: int = Field(default=0, ge=0, le=1)
137
+ gs_penalty_auto_mode: int = Field(default=1, ge=0, le=1)
138
+ gs_penalty_coef: int = Field(default=1, ge=1, le=2**63 - 1)
139
+ gs_penalty_inc_rate: int = Field(default=150, ge=100, le=200)
140
+ gs_max_penalty_coef: int = Field(default=0, ge=0, le=2**63 - 1)
141
+
142
+ @property
143
+ def algorithm_name(self) -> str:
144
+ """
145
+ Returns the name of the algorithm.
146
+
147
+ This abstract property method is intended to be overridden by subclasses.
148
+ It should provide the name of the algorithm being implemented.
149
+
150
+ Returns
151
+ -------
152
+ str
153
+ The name of the algorithm.
154
+ """
155
+ return "FDAV4"
@@ -2,6 +2,7 @@ from .aqarios import Aqarios
2
2
  from .aws import AWS, IQM, IonQ, Rigetti
3
3
  from .dwave import DWave
4
4
  from .dwave_qpu import DWaveQpu
5
+ from .fda import Fujitsu
5
6
  from .ibm import IBM
6
7
  from .qctrl import Qctrl
7
8
  from .zib import ZIB
@@ -14,6 +15,7 @@ __all__: list[str] = [
14
15
  "Aqarios",
15
16
  "DWave",
16
17
  "DWaveQpu",
18
+ "Fujitsu",
17
19
  "IonQ",
18
20
  "Qctrl",
19
21
  "Rigetti",
@@ -0,0 +1,17 @@
1
+ from luna_quantum.solve.interfaces.backend_i import IBackend
2
+
3
+
4
+ class Fujitsu(IBackend):
5
+ """Configuration class for the Fujitsu backend."""
6
+
7
+ @property
8
+ def provider(self) -> str:
9
+ """
10
+ Retrieve the name of the provider.
11
+
12
+ Returns
13
+ -------
14
+ str
15
+ The name of the provider.
16
+ """
17
+ return "fda"
@@ -123,8 +123,12 @@ class TransformationOutcome:
123
123
  action: ActionType
124
124
  analysis: ...
125
125
 
126
+ @overload
127
+ def __init__(self, model: Model, action: ActionType) -> None: ...
128
+ @overload
129
+ def __init__(self, model: Model, action: ActionType, analysis: object) -> None: ...
126
130
  def __init__(
127
- self, model: Model, action: ActionType, analysis: ... = None
131
+ self, model: Model, action: ActionType, analysis: object | None = ...
128
132
  ) -> None: ...
129
133
  @staticmethod
130
134
  def nothing(model: Model) -> TransformationOutcome:
@@ -62,6 +62,6 @@ class PrettyBase(BaseModel):
62
62
 
63
63
  data = self.model_dump()
64
64
 
65
- data_truncated, is_truncated = truncate(data, limit)
65
+ data_truncated, _ = truncate(data, limit)
66
66
 
67
67
  return self._pretty_print(data_truncated)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: luna-quantum
3
- Version: 1.0.4rc4
3
+ Version: 1.0.5
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: License :: OSI Approved :: Apache Software License
6
6
  Classifier: Operating System :: OS Independent
@@ -1,11 +1,11 @@
1
- luna_quantum-1.0.4rc4.dist-info/METADATA,sha256=qMWjD8dN2kyDUrpTou7oiHl9ddVZ6ITs_6I3aY7f63c,1585
2
- luna_quantum-1.0.4rc4.dist-info/WHEEL,sha256=EhaWXx4fd8VOPM6W-6pxsePGk73OLk2gBi7fwS90pc8,104
3
- luna_quantum-1.0.4rc4.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
4
- luna_quantum-1.0.4rc4.dist-info/licenses/NOTICE,sha256=noPOS8eDj5XoyRO8ZrCxIOh5fSjk0RildIrrqxQlepY,588
1
+ luna_quantum-1.0.5.dist-info/METADATA,sha256=-pQVEJDDngoa_D5WCSopXEQIuvsExn37VPX6TaOJ8Dk,1582
2
+ luna_quantum-1.0.5.dist-info/WHEEL,sha256=qPmdr8fB5VyzHuEe_BZYkwViBC6_YLDjr40IyuSix7k,104
3
+ luna_quantum-1.0.5.dist-info/licenses/LICENSE,sha256=psuoW8kuDP96RQsdhzwOqi6fyWv0ct8CR6Jr7He_P_k,10173
4
+ luna_quantum-1.0.5.dist-info/licenses/NOTICE,sha256=noPOS8eDj5XoyRO8ZrCxIOh5fSjk0RildIrrqxQlepY,588
5
5
  luna_quantum/__init__.py,sha256=RV92O-Th8ktm0S9kcpfRfECkeeORP-tbDKfpa4u1CiY,3223
6
6
  luna_quantum/__init__.pyi,sha256=1Joa1farT1Ey22yWYPMNPgQrGHIKL8bycrdPUgtQqw8,1661
7
- luna_quantum/_core.cpython-312-darwin.so,sha256=d37vAO8ncZLjjaz3p_WHRXuKQmaLIwrAiE7yEGTa5Ns,5017424
8
- luna_quantum/_core.pyi,sha256=JnKcoRh_ZUjeWZRZl_K9usnPYHSaIzbYPuXnevjtoYY,113649
7
+ luna_quantum/_core.cpython-312-darwin.so,sha256=lfyzvohe0lBo-WCyDzq9bLo-Xl_HkUoY161vIjZJ1Eo,5034064
8
+ luna_quantum/_core.pyi,sha256=sA0nkwnwiubpOZGb_lSJwJ8mBa4c4YIMLMTK7MBUK4E,114792
9
9
  luna_quantum/algorithms/__init__.py,sha256=IX9ZpzY3Do3mTgKqto5vAWwdYrZrM-RemYSf64yxefg,69
10
10
  luna_quantum/aqm_overwrites/__init__.py,sha256=rteObr5JHDnTnRime0Euq9Qy2iDIp6VMpFNHTGVNBe0,46
11
11
  luna_quantum/aqm_overwrites/model.py,sha256=La5mh-aS2LNLaQFp_B1EnhrKUXVRRmIqGnIvX66uc8Y,6099
@@ -13,9 +13,9 @@ luna_quantum/backends/__init__.py,sha256=OaE9cTpXP07x2mhJ_kLFaHPYZJBzdEQhlP_ztnq
13
13
  luna_quantum/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  luna_quantum/client/controllers/__init__.py,sha256=yG8Gwatlm6f-OH2p3WLTyAsNePUER84eBxx67pkRi4A,156
15
15
  luna_quantum/client/controllers/luna_http_client.py,sha256=Siwtm0wQzdRZXw0ilkUmFXbD8tbRuJI7cEceWwfXos4,1057
16
- luna_quantum/client/controllers/luna_platform_client.py,sha256=-X16kNpuvmFmVZl_QE9y-Qyek8XB90M2uXDqHYCefss,5216
17
- luna_quantum/client/controllers/luna_q.py,sha256=S8-Uvv9TYKC-yRo67T-g0kwIlDoEmluoAQlAl4otrQ4,1930
18
- luna_quantum/client/controllers/luna_solve.py,sha256=oqG_dR_82ccysm5Q4Gp9x7vQBb1xvCb9-mRA8qD8xzE,3399
16
+ luna_quantum/client/controllers/luna_platform_client.py,sha256=S6lt1mkE0aXYx9xoIKB9TO-fnQKDhL4AS56cT1EoaYI,8030
17
+ luna_quantum/client/controllers/luna_q.py,sha256=27umEkIfMGIYhkEHMz96th3a8KM4phb5Wa9pPY2RqHE,2042
18
+ luna_quantum/client/controllers/luna_solve.py,sha256=ZQSCQXCnc-QfQTPtlMBEohkjk2ppQMoYoW4kU1rPOPg,3499
19
19
  luna_quantum/client/error/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  luna_quantum/client/error/luna_api_key_invalid_error.py,sha256=kCutxPim7PPfzrpNUONychCOhIxYNzJFHiKL6gcaM74,298
21
21
  luna_quantum/client/error/luna_api_key_missing_error.py,sha256=alnuUWV7UOXmteQ0hJ_7_-lAp9IzdLVRTVxHz7ykrss,311
@@ -37,10 +37,10 @@ luna_quantum/client/interfaces/clients/users_rest_client_i.py,sha256=dswGOtmyvAi
37
37
  luna_quantum/client/interfaces/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  luna_quantum/client/interfaces/services/luna_q_i.py,sha256=uHwVwGkJAMsOPUlHQFTy7_8Zkm_1NJFZGz_kr38KIzc,830
39
39
  luna_quantum/client/interfaces/services/luna_solve_i.py,sha256=jp_ZfWv_7lQBBwNuz0OTCsa1uN45FNiy8hpLph3QzVc,1678
40
- luna_quantum/client/interfaces/services/service_i.py,sha256=ruEeQ7zfNRSXgANqHghTYprlC78lovCT5i7Ih-xoT7s,706
40
+ luna_quantum/client/interfaces/services/service_i.py,sha256=8PGI7UELvLOA9bk2p8REDp4PWdWiUc7uBwLTC1TAigc,1158
41
41
  luna_quantum/client/rest_client/__init__.py,sha256=eX8kt99OxkvKvHG1IZK9pvSlPuO4Vn5fVtHfpW3F6Bs,552
42
42
  luna_quantum/client/rest_client/circuit_rest_client.py,sha256=va23jfQPDJ7E7YAL3dnwCKotAoOYtdW7NSsZoYpDzeA,3288
43
- luna_quantum/client/rest_client/info_rest_client.py,sha256=Yv8rbJ3QraUpqNsi7rKdpNrYQOff_wD95p2IJhkkrsQ,2222
43
+ luna_quantum/client/rest_client/info_rest_client.py,sha256=nytZF_sG5ZWJ2k9I3YXLJKx-CUehivj9kaCfuoTUs9Q,2177
44
44
  luna_quantum/client/rest_client/model_rest_client.py,sha256=wmtVG-oKsJtEvnPnAnAoBsrFggezHpuJg0NYi-SDw54,6472
45
45
  luna_quantum/client/rest_client/qpu_token_rest_client.py,sha256=E2a2f3rHlbksnnI8Xl9KoQDC4c2x-eGOW7HtKLWUpzI,17297
46
46
  luna_quantum/client/rest_client/solve_job_rest_client.py,sha256=GizcVIR_k_nd3FzGXtW7LrrSjJHhbywA90wLxBMRn8w,8961
@@ -88,24 +88,24 @@ luna_quantum/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
88
88
  luna_quantum/exceptions/base_luna_quantum_error.py,sha256=qC712QkF04FiY_qwQ5HlIYVhg5P6WzXJ_chJDVTpWXI,89
89
89
  luna_quantum/exceptions/patch_class_field_exists_error.py,sha256=3TGKb-MNyjwntrJkbRaBKEvlsj68ROTwCltDt6Zg7Gg,398
90
90
  luna_quantum/factories/__init__.py,sha256=XT0vIcm65KVpYSLbqXdeoPd7yypSj36o1IC55CTaoj4,162
91
- luna_quantum/factories/luna_solve_client_factory.py,sha256=bayl3fQqYsr5uuerHC5F55t7EKktAhI6viDs4AoKWhs,2367
91
+ luna_quantum/factories/luna_solve_client_factory.py,sha256=Y5vqDe8F0HMj3WluHxPl0KbB8KDWRTgWgbZ1igzt3hM,3284
92
92
  luna_quantum/factories/usecase_factory.py,sha256=vp7ZsMOOsPAvyLCdsPNMM-pqLAOnrP2_GqLiB6RP_IQ,14996
93
93
  luna_quantum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
94
  luna_quantum/solve/__init__.py,sha256=Qu363Ci54FhrhRvuLm6WIFAsyxMwtza8n7ImHPQfxj0,307
95
95
  luna_quantum/solve/default_token.py,sha256=JpMrRtQsczmBYFeMvDOsbabpBfUubGWNVLlwFn2O4Ew,8691
96
96
  luna_quantum/solve/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
97
  luna_quantum/solve/domain/abstract/__init__.py,sha256=My23tGRFFJYVe6vwgUM4RAFr26Two1QnNryo5KXyfGU,137
98
- luna_quantum/solve/domain/abstract/luna_algorithm.py,sha256=E0_GAay9cTfsjB_T-tS5PNlh5GkxH9av6uuAZXtUdec,7025
98
+ luna_quantum/solve/domain/abstract/luna_algorithm.py,sha256=f24R-c8dEkLtT_UeGAMGV6RlqeBTrR_gtCAlk_-HjaE,7045
99
99
  luna_quantum/solve/domain/abstract/qpu_token_backend.py,sha256=2vLMzDrrJsi2ejVMdNOEuhf9x1e7zGijkIn2GCH--j8,1229
100
- luna_quantum/solve/domain/model_metadata.py,sha256=eGwoRxtUBhZLdEJTf8LJdeoundKSllVX2djt4fer6So,1644
101
- luna_quantum/solve/domain/solve_job.py,sha256=Svi1PJrqvc3JS1jP7Jj0fu7KXH-VtQ_Swj5q8LYHQqY,6607
100
+ luna_quantum/solve/domain/model_metadata.py,sha256=KqbZ59cKjfl9TrIy8L3BLT0qeqiWYRYNxgLgvQxh0Xo,1686
101
+ luna_quantum/solve/domain/solve_job.py,sha256=TR_JpZLefB5mtJPdC2UY1K-aQs8L4qWFzgd4EplDdFg,6783
102
102
  luna_quantum/solve/errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
103
  luna_quantum/solve/errors/incompatible_backend_error.py,sha256=PVhyMTIUShy1IJqc_FiYxxY5SzLs791Wfey-JHu6xoA,604
104
104
  luna_quantum/solve/errors/model_metadata_missing_error.py,sha256=TBTokypD8drCFPFeMWsUn7mt7aCmKMqKweyzshqf3Bg,363
105
105
  luna_quantum/solve/errors/solve_base_error.py,sha256=WhKaKTbWuQSxA6JLWtGT2x_CY0BUKuGMnB0oCutbA90,170
106
106
  luna_quantum/solve/errors/token_missing_error.py,sha256=PK3n0fe4a57rdSm6gj0qbeh8MQqen91ECpQXZVbGvmw,346
107
107
  luna_quantum/solve/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
- luna_quantum/solve/interfaces/algorithm_i.py,sha256=TQ8sScb9vyCxm8CxfX2mWVHbxBmOlogkY2R6LOWszcM,1622
108
+ luna_quantum/solve/interfaces/algorithm_i.py,sha256=dTWDW1CoFElIbVxjnSnA9lPIcrKDV1YJlySTR_p02xI,1665
109
109
  luna_quantum/solve/interfaces/backend_i.py,sha256=dNszKrHSFjBb66ABHPjUUGiENBP3jVN9nGSHJr2R0co,602
110
110
  luna_quantum/solve/interfaces/usecases/__init__.py,sha256=B3_AztBd0sIdDfhttHiydSN2mD5EJJYDb84eZAX0q3k,1414
111
111
  luna_quantum/solve/interfaces/usecases/model_delete_usecase_i.py,sha256=wQL0nE2d5UF9_cRpC-sbeHqKrA_46j9wGtO0_FI4gX8,648
@@ -122,7 +122,7 @@ luna_quantum/solve/interfaces/usecases/solve_job_delete_usecase_i.py,sha256=8JyN
122
122
  luna_quantum/solve/interfaces/usecases/solve_job_fetch_updates_usecase_i.py,sha256=2ldduW0f3qB74wlf-eIU5Od_jhzBPVgJSw53I49wGmM,1078
123
123
  luna_quantum/solve/interfaces/usecases/solve_job_get_result_usecase_i.py,sha256=eXMTO9J7c018kam-iVmkXmBhSTyU2ER9k_oQHJ5pmm0,2040
124
124
  luna_quantum/solve/parameters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- luna_quantum/solve/parameters/algorithms/__init__.py,sha256=risexrJYDlq-GSLNBLVH4RcshRsQ5ELO05S0EbowmL4,1251
125
+ luna_quantum/solve/parameters/algorithms/__init__.py,sha256=3cBSqNB_pC2_vCukpWHsuytqwX823C9vRB-LlxOdtEY,1370
126
126
  luna_quantum/solve/parameters/algorithms/base_params/__init__.py,sha256=wn85mVUqm9aub5Knu5Z_Q-A-2Yt__zB-iJ9Rxh5tFO8,771
127
127
  luna_quantum/solve/parameters/algorithms/base_params/decomposer.py,sha256=gvyb3migPD5ERYnirY0IAyZ_MH_pYRVJ58Jj0p_dAk8,2312
128
128
  luna_quantum/solve/parameters/algorithms/base_params/qaoa_circuit_params.py,sha256=ArDVt8C64xKPJ9new2zKdNUMxnod3zgnD_Eh0Bw69_k,2938
@@ -135,6 +135,11 @@ luna_quantum/solve/parameters/algorithms/flexible_parameter_algorithm.py,sha256=
135
135
  luna_quantum/solve/parameters/algorithms/genetic_algorithms/__init__.py,sha256=DAJCKQV7lAI2mibX9aEAfiINFcnhg7QLb1x7q5OIloE,74
136
136
  luna_quantum/solve/parameters/algorithms/genetic_algorithms/qaga.py,sha256=aLUl1N7nicjffxQM7AJ4cT5YqN8nXuub0DVhVjnt_8I,5287
137
137
  luna_quantum/solve/parameters/algorithms/genetic_algorithms/saga.py,sha256=ze8eNTMwzN8naWn_KHkVQ382Icxi3zhiyOsD04qDLRo,5207
138
+ luna_quantum/solve/parameters/algorithms/lq_fda/__init__.py,sha256=NNBSzxwazl60Id_qSLKxZNNRbndLmXJmCTLwyRB6wOA,195
139
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujits_da_base.py,sha256=tbfl1uhLJzodpkHjdKgUP2vOjyVvpUof6tIO1a1fDks,3350
140
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_cpu.py,sha256=0UirCEi_idNLAKQoHBWLn1FzRn6rjJABwMYiNdvF8rY,6135
141
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_v3c.py,sha256=O-OVZTQp6qAAKoEZ4-HJgNYDcaBYTdjGVbliLEcVDuY,8195
142
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_v4.py,sha256=MgRS65vnxC5IN7__-p7xnDd0ayZsnEv3oO9XRn1Zz0U,8193
138
143
  luna_quantum/solve/parameters/algorithms/optimization_solvers/__init__.py,sha256=y3lYmhd9JCEgVxZ-ApXxLtXc6A110ZUlokhnWOZ-cII,43
139
144
  luna_quantum/solve/parameters/algorithms/optimization_solvers/scip.py,sha256=IS7Of6ySarHTE1dWK-ANoaUx9UJrHkqCRFthz7R3MGE,1467
140
145
  luna_quantum/solve/parameters/algorithms/quantum_annealing/__init__.py,sha256=9X4RWwMPVH1ipAjEDGWF4_jDrk_vgUngx28IkLDkHmY,621
@@ -165,7 +170,7 @@ luna_quantum/solve/parameters/algorithms/simulated_annealing/population_annealin
165
170
  luna_quantum/solve/parameters/algorithms/simulated_annealing/qbsolv_like_simulated_annealing.py,sha256=roq_msa4EQrRpvFze23EnY7iQ-SDpu6ifSP9Thxn_6E,6583
166
171
  luna_quantum/solve/parameters/algorithms/simulated_annealing/repeated_reverse_simulated_annealing.py,sha256=phLC27T7vcMCi2f82LaaAObMEqoiAZJXRK38dl-3rBY,8220
167
172
  luna_quantum/solve/parameters/algorithms/simulated_annealing/simulated_annealing.py,sha256=urMh0DLN5iuj1uAoyXt7IzwMpNZWciTlq3GhApuNgFE,5660
168
- luna_quantum/solve/parameters/backends/__init__.py,sha256=ZfSKeIsloaOeY5a7qMsLp13r3y7IcbE9-YjcSK7qPKA,348
173
+ luna_quantum/solve/parameters/backends/__init__.py,sha256=KkWZ4Y3GtGFafyGCH1nX-s5AfNM3CowuJNfWAXpOums,388
169
174
  luna_quantum/solve/parameters/backends/aqarios.py,sha256=4qa9en_-IhFgs4NDGUDJ6XWNevuIGOWCPrp5DcSvwiw,364
170
175
  luna_quantum/solve/parameters/backends/aws/__init__.py,sha256=2o6R9htZHM6mvUSi94S14Q3HdfMgyg_nMTTBzhYdwXY,158
171
176
  luna_quantum/solve/parameters/backends/aws/aws.py,sha256=snFW6vY1xJsJuM84xZCmHPrpZBr469N3hIJ-3Im9ybQ,1119
@@ -175,6 +180,7 @@ luna_quantum/solve/parameters/backends/aws/iqm.py,sha256=db7td5uyrnUrOo2M22DMgkD
175
180
  luna_quantum/solve/parameters/backends/aws/rigetti.py,sha256=04Rg7CEz_70Aqd1f28ONhAQ8MXk79d-5mGbnxrqxYjU,953
176
181
  luna_quantum/solve/parameters/backends/dwave.py,sha256=ZIbZa0lY4TN1jYl5ddlAxhb5_lK4Zuuf1gyQ1fncf8w,358
177
182
  luna_quantum/solve/parameters/backends/dwave_qpu.py,sha256=8RJ4zPqLvplPsTmN3D8pNU5-XjwwAEYEvlIgTUPc5Ag,7314
183
+ luna_quantum/solve/parameters/backends/fda.py,sha256=z2WR3863eDABUKw1BlheEx3jLGkMFG8FjO_seLLCTf4,360
178
184
  luna_quantum/solve/parameters/backends/ibm.py,sha256=pDw-0sifu_dfJS4zH2INu6txPh0NgaYDNxPQHEhaF7o,4231
179
185
  luna_quantum/solve/parameters/backends/qctrl.py,sha256=BADuXCvZzFNS9d6MNQIKdPixeQM_2q-dBoRVwEglG7c,3503
180
186
  luna_quantum/solve/parameters/backends/zib.py,sha256=SqlLFYWCBHiPkxiCJGb1MH5JNtdKApllpd2f8lzn_D8,352
@@ -245,7 +251,7 @@ luna_quantum/solve/usecases/solve_job_delete_usecase.py,sha256=hUOLeFLU9NCggWMGu
245
251
  luna_quantum/solve/usecases/solve_job_fetch_updates_usecase.py,sha256=W-Z6Q7IuyodjZmFKEsJGaa9V2fnGMPWj9FRN9gEdPNc,1686
246
252
  luna_quantum/solve/usecases/solve_job_get_result_usecase.py,sha256=dk6LSjInOfH5d7LlbUmawnqytKig_vFTCKTDK5KlDlI,3541
247
253
  luna_quantum/transformations.py,sha256=AZtGBaJ0PTWsr4mpONoJq5BpNOXPcM85CnWDhPgXx_I,902
248
- luna_quantum/transformations.pyi,sha256=vqx3I1hxKpQivG0WQ_60-Isocme_DD0veVAUO7xycuk,10768
254
+ luna_quantum/transformations.pyi,sha256=wajxfV6QiD6R_7lUfk5kjAXp-ZHhOvLjtPqZCCX3UuU,10963
249
255
  luna_quantum/translator.py,sha256=xi5eiIRNv8ATz69GYpUY5kbEIUmQEtK6_dF5t2Mwpec,1134
250
256
  luna_quantum/translator.pyi,sha256=edLGrIFl6do9LaCH4znjnOD8Zb3va-9nBGq-H3XQHso,26478
251
257
  luna_quantum/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -253,8 +259,8 @@ luna_quantum/util/active_waiting.py,sha256=MkLL7UEtWh8jU1Zwd9rYqfcReYPGB7FJLUjQe
253
259
  luna_quantum/util/class_patcher.py,sha256=-vD_7Auh1dQTOJXOKv-4sTQ5EzH3n6I0EsHDFQ_ZPOY,5456
254
260
  luna_quantum/util/debug_info.py,sha256=UjMcmX5waYEEH51cK8REUOdjpNX0D6HWSR0ns7yQp54,1755
255
261
  luna_quantum/util/log_utils.py,sha256=8WK0ivN3Dq3QntIYu-eGRBrGyiBoFnZkRiX_GCc-IHQ,5471
256
- luna_quantum/util/pretty_base.py,sha256=Vv3dYpMsydOPYFOm-0lCCuJIe-62oYkI64Zy_bahl3s,2115
262
+ luna_quantum/util/pretty_base.py,sha256=QUNFiyz5MPsMCZB-wv622oeZ1uLkZ-_0xepNbuzQGRw,2104
257
263
  luna_quantum/util/pydantic_utils.py,sha256=nhl_SdLJVAizrtLVHvnbco84g8CdBVdVxN_jlXiv82w,1263
258
264
  luna_quantum/utils.py,sha256=pBOkGXNJXlOzxAwTJv8nCj32Q6WNeh3t6Ka3lmTgy9c,134
259
265
  luna_quantum/utils.pyi,sha256=yHHPluEJArUltZ2jJ9bPtTugj59E9TOTmYdyH35EHtU,1934
260
- luna_quantum-1.0.4rc4.dist-info/RECORD,,
266
+ luna_quantum-1.0.5.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.9.3)
2
+ Generator: maturin (1.9.4)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-macosx_11_0_arm64