luna-quantum 1.0.4rc4__cp312-cp312-win_amd64.whl → 1.0.5__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of luna-quantum might be problematic. Click here for more details.

Files changed (27) hide show
  1. luna_quantum/_core.cp312-win_amd64.pyd +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=HF3aUMilrtO42xS_fBzOVaPE8OtiNjP_RotLatII7HM,96
3
- luna_quantum-1.0.4rc4.dist-info/licenses/LICENSE,sha256=bR2Wj7Il7KNny38LiDGrASo12StUfpReF--OewXD5cw,10349
4
- luna_quantum-1.0.4rc4.dist-info/licenses/NOTICE,sha256=GHZYA5H4QFAhbhXliAi2SjWWXLjxl4hrHdEPyUbC0r0,601
1
+ luna_quantum-1.0.5.dist-info/METADATA,sha256=-pQVEJDDngoa_D5WCSopXEQIuvsExn37VPX6TaOJ8Dk,1582
2
+ luna_quantum-1.0.5.dist-info/WHEEL,sha256=4hYCffp0RsSVQAuv2PMtXQ9QS7YSHeZi4PrSg-wi2q0,96
3
+ luna_quantum-1.0.5.dist-info/licenses/LICENSE,sha256=bR2Wj7Il7KNny38LiDGrASo12StUfpReF--OewXD5cw,10349
4
+ luna_quantum-1.0.5.dist-info/licenses/NOTICE,sha256=GHZYA5H4QFAhbhXliAi2SjWWXLjxl4hrHdEPyUbC0r0,601
5
5
  luna_quantum/__init__.py,sha256=9Dpk-wfL5fR_R74c-JsFKZmUy7OUfe4hj4ZXEJaPAt4,3342
6
6
  luna_quantum/__init__.pyi,sha256=9Md6njbzsErrktv0GlRGYSunQIrIyw5r0kEJx1yMpkw,1746
7
- luna_quantum/_core.cp312-win_amd64.pyd,sha256=2oEiGaGtTOavw5sw8cWvniqX_nckEtxDrd_ZegNtGsw,6056448
8
- luna_quantum/_core.pyi,sha256=mezdmnUnyZqfYqFIKG4a1UtM3A6Y4RqSNqdybbH9q-E,117664
7
+ luna_quantum/_core.cp312-win_amd64.pyd,sha256=kF3UZHIabPuTuDwKaC3S9kNzslDo45RSOlu-SetqRHo,6065152
8
+ luna_quantum/_core.pyi,sha256=E9y2BorJhpwVQ4EGAnb8J7PhBkCqhlFtwj_A9ftKUxs,118861
9
9
  luna_quantum/algorithms/__init__.py,sha256=EoTNO0FXXjPrhpYfN7q9c_nUhmVHk2nEZsbhaVOBh_g,70
10
10
  luna_quantum/aqm_overwrites/__init__.py,sha256=ieIVhfslOwrznbvwqu3vNzU_nFIHS1hyeUgIV097WdQ,49
11
11
  luna_quantum/aqm_overwrites/model.py,sha256=stqMo97W0nzDLoWmTqwefdu7xgtPAWS46dsxOcJDHpU,6283
@@ -13,9 +13,9 @@ luna_quantum/backends/__init__.py,sha256=jBbtXn6u196zFHqOv-Yh1-S1otbYssGPPsEHTT3
13
13
  luna_quantum/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  luna_quantum/client/controllers/__init__.py,sha256=0HavZV2mfk4Inuv5KnEZo5OmCtl6orm1flUfx9bnT4o,160
15
15
  luna_quantum/client/controllers/luna_http_client.py,sha256=bwBn_d-JWkEmy6JX-vMo8qFhRAu9eteqCD8rBFl5wKo,1094
16
- luna_quantum/client/controllers/luna_platform_client.py,sha256=BGkBnIoNtISHRnTtPv6Z5quV1QQY564einW1UDZI2vM,5371
17
- luna_quantum/client/controllers/luna_q.py,sha256=2Wh47dJ3W6SjlwUtEUVKlpY-2OBDVFVeqooJBXq2Vr8,1992
18
- luna_quantum/client/controllers/luna_solve.py,sha256=pbGBrPnbCA_kG9Rq34lTZfc78WekD-m3ksFgMrARxOY,3524
16
+ luna_quantum/client/controllers/luna_platform_client.py,sha256=a0nuxcQ0ElfeVtHqDXLfUAKD0ylsZLHlYCWmeDbChDg,8286
17
+ luna_quantum/client/controllers/luna_q.py,sha256=nHh33ooK6iichuidJln29ZsmNThlmNWIRc3iiKfrDng,2109
18
+ luna_quantum/client/controllers/luna_solve.py,sha256=WInAX-1iqB-oNzSHW9idmokC1zVUF6oEDDdYTICvO5U,3628
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=QhMKifpn433Suci4DQGVdJ8CDo2dY1gjn-JMm5lEgr8,308
21
21
  luna_quantum/client/error/luna_api_key_missing_error.py,sha256=CDDvVqvooIn_HJRnP7ibHcEVl46jXoGKRpIUp3qmR80,321
@@ -37,10 +37,10 @@ luna_quantum/client/interfaces/clients/users_rest_client_i.py,sha256=RjTJZ0zOT1Y
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=LHX3IP7pD67ab40f6Qc3oM7nCxzI5eREOthloNXH_mY,864
39
39
  luna_quantum/client/interfaces/services/luna_solve_i.py,sha256=IX7OUOuQyMwFhpHofMDUGoy7vpdA-I1m7ves8qcN6vo,1750
40
- luna_quantum/client/interfaces/services/service_i.py,sha256=znlsnbdTQxNyj4UF172004LdzePiqgGnWN3FdcV7ROw,742
40
+ luna_quantum/client/interfaces/services/service_i.py,sha256=zGXw33iC9dBheBI6Ks-_RMUdidPKzBxxzqkj1dSxQkM,1214
41
41
  luna_quantum/client/rest_client/__init__.py,sha256=SEBWHNoL9qrUO_FydsiXDR6oJ_RitItbNW8nIdeNEGY,567
42
42
  luna_quantum/client/rest_client/circuit_rest_client.py,sha256=ktqvCoRxC6TuMNRRtSqPvxdJ2Vb0BqozjbRO-rMFzRY,3395
43
- luna_quantum/client/rest_client/info_rest_client.py,sha256=-wGJZ5dNf_bKmdz4pWStVYCJp1j4hanZwYWuoVVC5_o,2298
43
+ luna_quantum/client/rest_client/info_rest_client.py,sha256=-jpWBTwgBpbt8aJPfWc0p8gkGYhozHRje9v5XDugqmU,2251
44
44
  luna_quantum/client/rest_client/model_rest_client.py,sha256=Umgn0t7a8VYzih4YvYKf1Wj06du7hQu05F7AyiKjXuQ,6688
45
45
  luna_quantum/client/rest_client/qpu_token_rest_client.py,sha256=tWbkUQoALNIJ9ozFjC-57-wwA689GfvXx9tCPD9_U94,17805
46
46
  luna_quantum/client/rest_client/solve_job_rest_client.py,sha256=BMjgUt5fx--WpwcuorGoT160wP4QviUU8Y4S1Xb-Z1w,9247
@@ -88,24 +88,24 @@ luna_quantum/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
88
88
  luna_quantum/exceptions/base_luna_quantum_error.py,sha256=Gl65slQxbNJoo8Kgnqif-slshlluCke0O0ow2r5PZE0,91
89
89
  luna_quantum/exceptions/patch_class_field_exists_error.py,sha256=4nmnGlPXp-SjuNX72PETXQ4eZzVpMTxH0eYs1IVDUPQ,408
90
90
  luna_quantum/factories/__init__.py,sha256=uetMDQn7uOcq2aytTkV-J0k4rXM4VppriFsN9_y1cIo,166
91
- luna_quantum/factories/luna_solve_client_factory.py,sha256=BHB33Uqn56nMcUCb80-c5GFdwQMXyBeQT2XCObmH_OI,2442
91
+ luna_quantum/factories/luna_solve_client_factory.py,sha256=KMtWEOeb6S35HNHiCYV6gft_twqBDJDh0yaq_ZuEJQ8,3384
92
92
  luna_quantum/factories/usecase_factory.py,sha256=FyqnhCWgkJaQMy11xUhw6iTy7CVPPoyKjTx2VOpBwF4,15453
93
93
  luna_quantum/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
94
94
  luna_quantum/solve/__init__.py,sha256=j6K4QzAHU6mE6Hq0gWKJlSgkXo4MnPONMUBlpf890fs,320
95
95
  luna_quantum/solve/default_token.py,sha256=dMyxO2BS2IrMZqja6aFTkGzkDDxt4mb3Jt3fAw3bqSo,8995
96
96
  luna_quantum/solve/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
97
  luna_quantum/solve/domain/abstract/__init__.py,sha256=QjmDfEn-Wil0xWC5YronLrtyHtYNKgzaojQMLsjUXVI,141
98
- luna_quantum/solve/domain/abstract/luna_algorithm.py,sha256=HAHBDz1BFTBFHRm0ucp0R2DlYfwMH6JoqDA_G9e2vHA,7228
98
+ luna_quantum/solve/domain/abstract/luna_algorithm.py,sha256=5wMRpf176TJ529xsBt0ui9UHHPsSzP_t-a7MMKJ2otI,7250
99
99
  luna_quantum/solve/domain/abstract/qpu_token_backend.py,sha256=70FZ4RwRygee_ZR8qHmjFTSnlWSZjYSkxauP89jK5_M,1263
100
- luna_quantum/solve/domain/model_metadata.py,sha256=HSJ9HdIE7y10pjmkMeJHBon9q8hFUH6Lh0V7B3Zr-_I,1698
101
- luna_quantum/solve/domain/solve_job.py,sha256=xi6lesF0gvssik71K27dbf-QFN6kRSyM8hEif-R3pdo,6795
100
+ luna_quantum/solve/domain/model_metadata.py,sha256=vDrF21cSAXOBg3aLVHCejV9dWFugJYCpRiXKJaF5yjc,1742
101
+ luna_quantum/solve/domain/solve_job.py,sha256=ArZYANQ7S6X4esJB-TmVCQjchxCWBsIlXFCairL30lI,6979
102
102
  luna_quantum/solve/errors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
103
  luna_quantum/solve/errors/incompatible_backend_error.py,sha256=k1qzt2gabHPSsgYjcD_vD8b5I1nB4CwyWYxwTbAnVtY,619
104
104
  luna_quantum/solve/errors/model_metadata_missing_error.py,sha256=BNSbjn0s0z6H4uAANl7r7c-uwOucNnknuAvhFNa3rZM,374
105
105
  luna_quantum/solve/errors/solve_base_error.py,sha256=kb6czHnNG3ECDMFEpRC8ZHxOICZu5k7xe7k9LhQmrUk,175
106
106
  luna_quantum/solve/errors/token_missing_error.py,sha256=QKV5RCx6gXw8eJZQsW8xlkWhm9YLGEAa1eZL19ir8xk,357
107
107
  luna_quantum/solve/interfaces/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
- luna_quantum/solve/interfaces/algorithm_i.py,sha256=dNcWqz9raaduTktpVabyF42j7ffMS9PTheOLjdyXMwo,1669
108
+ luna_quantum/solve/interfaces/algorithm_i.py,sha256=RGYnx8TfSSa9BwudB_euZ1SebKgMMyJwHKDnfBcmTJQ,1714
109
109
  luna_quantum/solve/interfaces/backend_i.py,sha256=Y7llgjGi3DUGV6SGXPpfOnAI1mWoWzMYofCTJkRwx_k,630
110
110
  luna_quantum/solve/interfaces/usecases/__init__.py,sha256=e161Kd0wjjSX1S5I3xCI0AJG8Z8KP9FCGAcgBHRBdPw,1469
111
111
  luna_quantum/solve/interfaces/usecases/model_delete_usecase_i.py,sha256=AX1Ln63LQ9_zU3CqpECxAcWXnmTjo1pEu3eskS6Jy2k,675
@@ -122,7 +122,7 @@ luna_quantum/solve/interfaces/usecases/solve_job_delete_usecase_i.py,sha256=qX0R
122
122
  luna_quantum/solve/interfaces/usecases/solve_job_fetch_updates_usecase_i.py,sha256=qKbiZ91LhXnNGqydTNSqpVzfodBaxEgI29w69rbjaV8,1116
123
123
  luna_quantum/solve/interfaces/usecases/solve_job_get_result_usecase_i.py,sha256=rmlf0ratcQsLgYfVC1-nKmsWbY6EFtlJv558LUfQI-g,2103
124
124
  luna_quantum/solve/parameters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- luna_quantum/solve/parameters/algorithms/__init__.py,sha256=5pyzgraVCIF2hlnZIaC6x2IIDeFWsoPKOnPetz-3EaE,1300
125
+ luna_quantum/solve/parameters/algorithms/__init__.py,sha256=QmAVF8M5XMk6P9VB2vktykdQksSVD0K79F7RYNojRmk,1423
126
126
  luna_quantum/solve/parameters/algorithms/base_params/__init__.py,sha256=QjHyIVCpyLUM1WUdVqlq8tkj5LSF0rhWuBTU8AiZYAI,795
127
127
  luna_quantum/solve/parameters/algorithms/base_params/decomposer.py,sha256=D160b7TxqGNso9lXjV8HykNLcqEk9Ah9xFLnZTHiX_g,2369
128
128
  luna_quantum/solve/parameters/algorithms/base_params/qaoa_circuit_params.py,sha256=GYSEDdkkakQcjVa_xddvM23GiV8eV6Qq0AeSDC6gvC8,3033
@@ -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=9ErRajVOTWVYkLxeW9PpwQtBAbeEa1q3R_xg04qCfT8,78
136
136
  luna_quantum/solve/parameters/algorithms/genetic_algorithms/qaga.py,sha256=Ubb8_KgZgFzMpMTKEAmtfOcM_B9z4Z5p5JctCDYVsGM,5418
137
137
  luna_quantum/solve/parameters/algorithms/genetic_algorithms/saga.py,sha256=A_1-QsMgNIZnMQcnbiR0tfWKDlWIxY6mwwHhgKGRd60,5346
138
+ luna_quantum/solve/parameters/algorithms/lq_fda/__init__.py,sha256=agw-JtYMbZFFxWSXmZhj1Ss_eK6L6ymt8B1dtzSYuI4,204
139
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujits_da_base.py,sha256=czlvkFrQFqoMveo58-LBLNs1sl7jhCbUtTelsptub6g,3435
140
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_cpu.py,sha256=0VcDN1nfxni5uToxJxTd8NXyurEem6Af4xy7KeZeJsU,6260
141
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_v3c.py,sha256=EYHDURM18VOWqMRB9e0g5hlY7zXGcUN7mvR8ebWD5K4,8350
142
+ luna_quantum/solve/parameters/algorithms/lq_fda/fujitsu_da_v4.py,sha256=LmvSZ_w-zhBwIljszapu9q8eX0Q-lgGD-yzYsx-sMpk,8348
138
143
  luna_quantum/solve/parameters/algorithms/optimization_solvers/__init__.py,sha256=yg2K-1q3E0J3EDSVHGl2NDnCl3QVwF8F01QZMVrb3Yw,46
139
144
  luna_quantum/solve/parameters/algorithms/optimization_solvers/scip.py,sha256=uGxzuqQA6WswkY73un1-8QlH7PNMHSKg2MEDCn8vmBc,1518
140
145
  luna_quantum/solve/parameters/algorithms/quantum_annealing/__init__.py,sha256=modV3HJ_90iQzQnKDZCoVbJPnZoJ4_4buGvNUby76VE,640
@@ -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=_Nlo0MeIyqSHVzmYPNFH_bNgY_GXo7PNwLAQyjm_s1I,6724
166
171
  luna_quantum/solve/parameters/algorithms/simulated_annealing/repeated_reverse_simulated_annealing.py,sha256=vrNYGwwEPhm2Ad-SXm7ynv3NL3-wPX0-VY92-4pdE4M,8392
167
172
  luna_quantum/solve/parameters/algorithms/simulated_annealing/simulated_annealing.py,sha256=EyvYWVDJiHTKJB0TiX8vcZvhRi2v551a5IKYgolSMzs,5786
168
- luna_quantum/solve/parameters/backends/__init__.py,sha256=9w9RQT8pbzt8fybFop9cZdFA4rvdXJMbJb0Vjrq2ddM,368
173
+ luna_quantum/solve/parameters/backends/__init__.py,sha256=i3BFA6zKpHZVPeTqbAHiqLPL2Vua-ZbJuIO6H85GdWI,410
169
174
  luna_quantum/solve/parameters/backends/aqarios.py,sha256=B13jMYYNSRMB90tHiSgef9xFUrc_fklsLfaJTGZj7PY,381
170
175
  luna_quantum/solve/parameters/backends/aws/__init__.py,sha256=PLCSdxAUF65wzV0GP5gRBfRT3Ev9UfoczOs5PGOR-v0,169
171
176
  luna_quantum/solve/parameters/backends/aws/aws.py,sha256=WPWX1ZZhbBYgJd52a6UuWxtX48NqVjpJLx1Ytdu82WY,1155
@@ -175,6 +180,7 @@ luna_quantum/solve/parameters/backends/aws/iqm.py,sha256=S9caahJbiTHpHbDqp-VBfdt
175
180
  luna_quantum/solve/parameters/backends/aws/rigetti.py,sha256=t4mZHr1cqrJ3dPdCg3tup1Z4_3QiEdw4jJofBaO4PHA,984
176
181
  luna_quantum/solve/parameters/backends/dwave.py,sha256=BjNlM2nKWeyaMfpBcBHaAOt7mzV-p-SjC6bUQ5ltaNk,375
177
182
  luna_quantum/solve/parameters/backends/dwave_qpu.py,sha256=JQucgjQEmvLWa7tAaasw5ZZ02fa83vOoxg1xdOIfSEw,7480
183
+ luna_quantum/solve/parameters/backends/fda.py,sha256=Qny-5Rga58STcFAxo1znRCi3l0_vT7_7pa1pg5zKbUM,377
178
184
  luna_quantum/solve/parameters/backends/ibm.py,sha256=4T7vNcyrG2IAAR-LuJMQZKdndhqkvPbWSotlayGJYHM,4369
179
185
  luna_quantum/solve/parameters/backends/qctrl.py,sha256=W0BzW6HqcuynQOsm1HP38PUMB2AYMz2FC5LvUa8DJ5U,3606
180
186
  luna_quantum/solve/parameters/backends/zib.py,sha256=_hqSR5RyVJ5TBIUTPUHoCf-h--THt2jP5hRJkggMUCw,369
@@ -245,7 +251,7 @@ luna_quantum/solve/usecases/solve_job_delete_usecase.py,sha256=a-lo9CoWjePo-aq7Y
245
251
  luna_quantum/solve/usecases/solve_job_fetch_updates_usecase.py,sha256=9vcs3x5uLmBjkqSF12IMHrPjrPSodm0AHI0qPVAruNE,1735
246
252
  luna_quantum/solve/usecases/solve_job_get_result_usecase.py,sha256=_62COwl-I1iGaX2lfrUnmZmPyKJZRNrJGtRVBiW1SYc,3636
247
253
  luna_quantum/transformations.py,sha256=A00BqmKpZz1Ixrb77a_ynpuqtB7w-AlVshg-QHp2UwM,920
248
- luna_quantum/transformations.pyi,sha256=XjLxMhYGAeHABq19SHDBOTDEsOcHaBgTBQzlJ-5SxpQ,11135
254
+ luna_quantum/transformations.pyi,sha256=rqDnvS_a1sGRezWK6s_QN5FO--XSPo3sFUeQnaqYdF4,11334
249
255
  luna_quantum/translator.py,sha256=5RDTzFzd5sw3JzxFQsHdZQWhz2KDl03nzik5dUHebHI,1157
250
256
  luna_quantum/translator.pyi,sha256=RcePKY4Ztw-uv0Dfyx2DTw1TBMyem_SWts1MmzYZfn0,27347
251
257
  luna_quantum/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -253,8 +259,8 @@ luna_quantum/util/active_waiting.py,sha256=hmwUiav3woWy1q6KJckYmHTIIFPI4MnQ4QF1L
253
259
  luna_quantum/util/class_patcher.py,sha256=rQRjnUgAXq0NnFY7lvfNZu4r-4VWvke0sV18i67DfTI,5620
254
260
  luna_quantum/util/debug_info.py,sha256=--Ef5EIgo3oWdUc5vn8TKFHNmcflBmc5-bexTSUlBJQ,1807
255
261
  luna_quantum/util/log_utils.py,sha256=0-ARoGkp7xyTvw1i-pRJoq1ylDKNC4eDoVY2DG05DS8,5658
256
- luna_quantum/util/pretty_base.py,sha256=rJy28OKfNdB1j5xdzOmFrCdbw-Gb-JJ5Dcz3NvOpIcQ,2182
262
+ luna_quantum/util/pretty_base.py,sha256=tvl9_LeqllYv41RibDuF_gCtO8Z54P1S0DkdGZG5eEw,2171
257
263
  luna_quantum/util/pydantic_utils.py,sha256=KipyyVaajjFB-krdPl_j5BLogaiPqn0L8mrJuLwZtic,1301
258
264
  luna_quantum/utils.py,sha256=RlF0LFK0qXavL22BSjMuNcGBGJrEL8mde_rAPX66qhw,137
259
265
  luna_quantum/utils.pyi,sha256=TRV-THwZJdYDD5q3kn4W-p4dslim54xNJW0yFbXPFhs,2001
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-win_amd64