Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ppravatto committed Jul 7, 2021
1 parent a122d8f commit 830de39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mpiexec -n <number-of-task> python3 MPI_scan.py <input_file>
for a multiple VQE calculation. Keep in mind that the indirect mode will still save all the graphs and data but no interactive windows will be open.

## Currently supported optimizers
- Nelder-mead
- COBYLA
- SLSQP
- SPSA
- Nelder-mead (from SciPy)
- COBYLA (from SciPy)
- SLSQP (from SciPy)
- SPSA (modified version based on Qiskit)
2 changes: 1 addition & 1 deletion iteration_post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def load_parsed_files(path, root_name=""):

single = True if input_buffer.upper() == "A" else False

collect_infro = False
collect_info = False
if single == False:
input_buffer = input("\nDo you want to save information for a multiple comparison (y/n)?")
collect_info = True if input_buffer.upper() == "Y" else False
Expand Down

0 comments on commit 830de39

Please sign in to comment.