Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit fd7f819

Browse files
authored
Merge branch 'master' into remove-pprint
2 parents 438ec9e + 7a538d0 commit fd7f819

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

start_here.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"6. [Extended stabilizer tutorial](tutorials/simulators/6_extended_stabilizer_tutorial.ipynb) - Gives an overview of the *extended stabilizer* Qasm Simulator method\n",
7171
"\n",
7272
"\n",
73-
"7. [Matrix Product State simulator](tutorials/simulations/7_matrix_product_state_method.ipynb) - Gives an overview of the *matrix product state* Simulator method\n",
73+
"7. [Matrix Product State simulator](tutorials/simulators/7_matrix_product_state_method.ipynb) - Gives an overview of the *matrix product state* Simulator method\n",
7474
"\n",
7575
"\n",
7676
"## Quantum Device Noise Analysis\n",
@@ -106,7 +106,7 @@
106106
"2. [Quadratic Program Converters](tutorials/optimization/2_converters_for_quadratic_programs.ipynb) - Qiskit Optimization provides with `QuadraticProgram` a very generic and powerful representation for optimization problems\n",
107107
"\n",
108108
"\n",
109-
"3. [Minimum Eigen Optimizer](tutorials/optimization/3_minimum_eigen_optimizer) - Solutions to quadratic programs using minimum eigenvalue solvers.\n",
109+
"3. [Minimum Eigen Optimizer](tutorials/optimization/3_minimum_eigen_optimizer.ipynb) - Solutions to quadratic programs using minimum eigenvalue solvers.\n",
110110
"\n",
111111
"\n",
112112
"4. [Grover Optimizer](tutorials/optimization/4_grover_optimizer.ipynb) - Explore each component of the `GroverOptimizer`, which utilizes the techniques described in GAS, by minimizing a Quadratic Unconstrained Binary Optimization (QUBO) problem\n",

tutorials/optimization/3_minimum_eigen_optimizer.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"Qiskit wraps the translation to an Ising Hamiltonian (in Qiskit Aqua also called `Operator`), the call to an `MinimumEigensolver` as well as the translation of the results back to `OptimizationResult` in the `MinimumEigenOptimizer`.\n",
3030
"\n",
3131
"In the following we first illustrate the conversion from a `QuadraticProgram` to an `Operator` and then show how to use the `MinimumEigenOptimizer` with different `MinimumEigensolver` to solve a given `QuadraticProgram`.\n",
32-
"The algorithms in Qiskit automatically try to convert a given problem to the supported problem class if possible, for instance, the `MinimumEigenOptimizer` will automatically translate integer variables to binary variables or add a linear equality constraints as a quadratic penalty term to the objective.\n",
32+
"The algorithms in Qiskit automatically try to convert a given problem to the supported problem class if possible, for instance, the `MinimumEigenOptimizer` will automatically translate integer variables to binary variables or add a linear equality constraints as a quadratic penalty term to the objective. It should be mentioned that Aqua will through a `QiskitOptimizationError` if conversion of a quadratic program with integer variable is attempted.\n",
3333
"\n",
3434
"The circuit depth of `QAOA` potentially has to be increased with the problem size, which might be prohibitive for near-term quantum devices.\n",
3535
"A possible workaround is Recursive QAOA, as introduced in [2].\n",

0 commit comments

Comments
 (0)