quast_decisiontree.nodes.qrisp_vqe_setup
quast_decisiontree.nodes.qrisp_vqe_setup
Setup node for QrispVQE — assembles HybridAlgorithm + inputs for execution.
logger
module-attribute
logger = logging.getLogger('dt_logger')
QrispVQESetupNode
Bases: Node
Sets up a QrispVQE instance and prepares inputs for HybridAlgorithmExecuteNode.
Assembles the hybrid algorithm with its hyperparameters and gathers the required inputs (hamiltonian, ansatz_function, num_params, num_qubits) from problem_data.
If hamiltonian is not already in problem_data, it is derived from qubo_matrix.
Modifications at runtime: None (all parameters come from prior nodes).
Source code in src/quast_decisiontree/nodes/qrisp_vqe_setup.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | |
__init__
__init__(children)
Source code in src/quast_decisiontree/nodes/qrisp_vqe_setup.py
71 72 73 74 75 76 77 78 79 80 81 82 83 | |
execute
execute(problem_data, path_info)
Source code in src/quast_decisiontree/nodes/qrisp_vqe_setup.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
interpret_result
interpret_result(
result, problem_data, next_node_info=None, config=None
)
Interpret VQEResult into standard result dict.
Source code in src/quast_decisiontree/nodes/qrisp_vqe_setup.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | |
qubo_to_qrisp_hamiltonian
qubo_to_qrisp_hamiltonian(qubo_matrix)
Create a Qrisp Hamiltonian from a QUBO matrix.
Converts QUBO to Ising form and returns a Qrisp QubitOperator (Hamiltonian).
The QUBO-to-Ising conversion follows
x_i = (1 - Z_i) / 2
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
qubo_matrix
|
ndarray
|
Square numpy array representing the QUBO cost matrix Q. |
required |
Returns:
| Type | Description |
|---|---|
|
Tuple of (hamiltonian, offset) where hamiltonian is a Qrisp-compatible |
|
|
QubitOperator and offset is the constant energy offset. |
Source code in src/quast_decisiontree/nodes/qrisp_vqe_setup.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |