Skip to content

Commit 4deb8fd

Browse files
authored
Fix function name and minor typo (#156)
1 parent 3fe79a0 commit 4deb8fd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ classical solver provide:
3434
</p>
3535

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

notebooks/satellitesolver/satellitesolver_example.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"metadata": {},
4141
"outputs": [],
4242
"source": [
43-
"utils.plot_acqisition_requests(ac_reqs)"
43+
"utils.plot_acquisition_requests(ac_reqs)"
4444
]
4545
},
4646
{

src/mqt/problemsolver/satellitesolver/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def sort_acquisition_requests(acqs: list[LocationRequest]) -> list[LocationReque
9999
return acqs_sorted
100100

101101

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

0 commit comments

Comments
 (0)