Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dynamic = ["version"]

dependencies = [
"mqt.core>=3.8.0",
"mqt.ddsim>=2.6.0",
"qiskit>=2.0.3",
"qiskit_aer>=0.16.4; python_version < '3.14'",
"numpy>=1.24",
Expand Down
2 changes: 1 addition & 1 deletion src/mqt/problemsolver/csp.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import numpy as np
from mqt.core import load
from mqt.core.dd import sample
from mqt.ddsim import sample
from qiskit import QuantumCircuit, QuantumRegister

if TYPE_CHECKING:
Expand Down
2 changes: 1 addition & 1 deletion src/mqt/problemsolver/tsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import networkx as nx
import numpy as np
from mqt.core import load
from mqt.core.dd import sample
from mqt.ddsim import sample
from python_tsp.exact import solve_tsp_dynamic_programming
from qiskit import ClassicalRegister, QuantumCircuit, QuantumRegister
from qiskit.synthesis.qft import synth_qft_full
Expand Down
Loading