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

Dev -> Main merge to account for readme changes and script cleanup #47

Merged
merged 2 commits into from
Jun 25, 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
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ This projct focuses on the documentation of applications for Quantum Computers.
the notebooks/ directory. For taking a look at notebooks that are going through ongoing development, one can take a look at the `notebook/exotic-phases-nb` and `notebook/dicke-model-nb`
branches.

# Citation

If qc-applications proves useful in your work, please consider citing it using the following BibTeX citation for the pre-print, available [here](https://arxiv.org/abs/2406.06625):

```
@misc{2406.06625,
Title = {Potential Applications of Quantum Computing at Los Alamos National Laboratory},
Author = {Andreas Bärtschi and Francesco Caravelli and Carleton Coffrin and Jonhas Colina and Stephan Eidenbenz and Abhijith Jayakumar and Scott Lawrence and Minseong Lee and Andrey Y. Lokhov and Avanish Mishra and Sidhant Misra and Zachary Morrell and Zain Mughal and Duff Neill and Andrei Piryatinski and Allen Scheie and Marc Vuffray and Yu Zhang},
Year = {2024},
Eprint = {2406.06625},
archivePrefix={arXiv},
primaryClass={quant-ph}
}
```

## License

This code is provided under a BSD license as part of the Quantum Application Specifications and Benchmarks project (O4626).
2 changes: 1 addition & 1 deletion src/qca/utils/chemistry_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def gsee_molecular_hamiltonian(
value_per_circuit:float=None,
repetitions_per_application:int=None
) -> int:
uid = int(random.random() % len(molecular_hamiltonians))*1000
uid = random.randint(0, 1000)
for idx, molecular_hamiltonian_info in enumerate(molecular_hamiltonians):
molecular_hamiltonian = molecular_hamiltonian_info.molecular_hamiltonian
molecular_hf_energy = molecular_hamiltonian_info.hf_energy
Expand Down
Loading