amplify.client.FujitsuDA4SolverClientResult
- class FujitsuDA4SolverClientResult
A class that provides information about the execution results obtained by
FujitsuDA4SolverClient
.- __init__(*args, **kwargs)
Methods
__init__
(*args, **kwargs)Attributes
[Deprecated] The annealing time in a given job, measured in milliseconds.
A list of
penalty_energy
.A list of
progress
of FujitsuDA4Solver.A list of solutions.
The Status of the job in FujitsuDA4Solver.
Timing-related information about FujitsuDA4Solver client.
- property annealing_time_ms
[Deprecated] The annealing time in a given job, measured in milliseconds.
- Type:
- property penalty_energy
A list of
penalty_energy
. The index of the list corresponds to that ofsolutions
. The values of penalty_energy areNone
unlessset_penalty_binary_polynomial
is set toTrue
. If the value of penalty_energy is not 0, it indicates that the constraint condition of the problem is not satisfied. For more information, see QuboSolution Schemas in Digital Annealer API reference (QUBO API V4).- Type:
- property progress
A list of
progress
of FujitsuDA4Solver. Each element of the list isClientResultProgress
object.progress
hastime
,energy
, andpenalty_energy
properties. For more information, see Progress Schemas in Digital Annealer API reference (QUBO API V4).- Type:
- property solutions
A list of solutions. Each element in the list is a
ClientSolution
object. The values of"energy"
,"configuration"
, andfrequency"
of the QuboSolution of FujitsuDA4Solver are mapped toenergy
,values
, andfrequency
properties, respectively.- Type:
- property status
The Status of the job in FujitsuDA4Solver.
'Deleted'
is output as the default behavior, since Amplify SDK posts Delete request of the job after obtaining the results.- Type:
- property timing
Timing-related information about FujitsuDA4Solver client.
solve_time
andtotal_elapsed_time
are included.