Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ classical solver provide:
</p>

When provided with a problem description, MQT ProblemSolver offers a selection of implemented quantum algorithms.
The user just has to chose one and all further (quantum) calculation steps are encapsulated within MQT ProblemSolver.
The user just has to choose one and all further (quantum) calculation steps are encapsulated within MQT ProblemSolver.
After the calculation finished, the respective solution is returned - again in the same format as classical
solvers use.

Expand Down
2 changes: 1 addition & 1 deletion notebooks/satellitesolver/satellitesolver_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"metadata": {},
"outputs": [],
"source": [
"utils.plot_acqisition_requests(ac_reqs)"
"utils.plot_acquisition_requests(ac_reqs)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/mqt/problemsolver/satellitesolver/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def sort_acquisition_requests(acqs: list[LocationRequest]) -> list[LocationReque
return acqs_sorted


def plot_acqisition_requests(acqs: list[LocationRequest]) -> None:
def plot_acquisition_requests(acqs: list[LocationRequest]) -> None:
# Plots all acquisition requests on a sphere
phi, theta = np.mgrid[0 : np.pi : 100j, 0 : 2 * np.pi : 100j] # type: ignore[misc]
x = R_E * np.sin(phi) * np.cos(theta)
Expand Down
Loading