-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
668f03c
commit 614806b
Showing
2 changed files
with
10 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,17 @@ | ||
from qibochem.ansatz.basis_rotation import ( | ||
unitary_rot_matrix, | ||
swap_matrices, | ||
givens_rotation_parameters, | ||
givens_rotation_gate, | ||
br_circuit, | ||
givens_rotation_gate, | ||
givens_rotation_parameters, | ||
swap_matrices, | ||
unitary_rot_matrix, | ||
) | ||
from qibochem.ansatz.hardware_efficient import ( | ||
hea, | ||
) | ||
from qibochem.ansatz.hf_reference import ( | ||
bk_matrix_power2, | ||
bk_matrix, | ||
hf_circuit, | ||
) | ||
from qibochem.ansatz.hardware_efficient import hea | ||
from qibochem.ansatz.hf_reference import bk_matrix, bk_matrix_power2, hf_circuit | ||
from qibochem.ansatz.ucc import ( | ||
expi_pauli, | ||
ucc_circuit, | ||
mp2_amplitude, | ||
generate_excitations, | ||
mp2_amplitude, | ||
sort_excitations, | ||
ucc_ansatz, | ||
ucc_circuit, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
from qibochem.driver.molecule import ( | ||
Molecule, | ||
) | ||
from qibochem.driver.hamiltonian import ( | ||
fermionic_hamiltonian, | ||
qubit_hamiltonian, | ||
parse_pauli_string, | ||
qubit_hamiltonian, | ||
symbolic_hamiltonian, | ||
) | ||
from qibochem.driver.molecule import Molecule |