Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #52

Merged
merged 2 commits into from
Mar 13, 2024
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 docs/making-sense-of-the-result.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A QAOA workflow is composed by 4 parts. this example, we have used the default v

Result is a class attribute of the object `q`, and its chief role is that of keeping a record of the steps behind the workflow.

In particular, there are three pain attributes of the result object:
In particular, there are three main attributes of the result object:

### The optimized result

Expand Down
2 changes: 1 addition & 1 deletion docs/what-is-the-qaoa.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ This means that we now know how to construct the QAOA circuit for any QUBO probl
The classical loop procedure in quantum computing involves the following steps:

1. Encoding the optimization problem into a parametric quantum circuit
2. InitializingInitializing the circuit parameters
2. Initializing the circuit parameters
3. Evaluating the cost function, which represents the energy of the system described by the quantum circuit, by measuring the expectation value of the cost Hamiltonian $\langle \psi|\mathcal{H}_C|\psi\rangle$.
4. Updating the circuit parameters using a classical optimization algorithm, such as gradient descent or COBYLA, to minimize the cost function and find the optimal solution to the optimization problem.

Expand Down