-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from pasqal-io/jm/constructors
Add constructors
- Loading branch information
Showing
10 changed files
with
1,595 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# flake8: noqa | ||
|
||
from .feature_maps import ( | ||
feature_map, | ||
chebyshev_feature_map, | ||
fourier_feature_map, | ||
tower_feature_map, | ||
exp_fourier_feature_map, | ||
) | ||
|
||
from .ansatze import hea, build_qnn | ||
|
||
from .daqc import daqc_transform | ||
|
||
from .hamiltonians import ( | ||
hamiltonian_factory, | ||
ising_hamiltonian, | ||
single_z, | ||
total_magnetization, | ||
zz_hamiltonian, | ||
) | ||
|
||
from .qft import qft | ||
|
||
# Modules to be automatically added to the qadence namespace | ||
__all__ = [ | ||
"feature_map", | ||
"chebyshev_feature_map", | ||
"fourier_feature_map", | ||
"tower_feature_map", | ||
"exp_fourier_feature_map", | ||
"hea", | ||
"build_qnn", | ||
"hamiltonian_factory", | ||
"ising_hamiltonian", | ||
"single_z", | ||
"total_magnetization", | ||
"zz_hamiltonian", | ||
"qft", | ||
"daqc_transform", | ||
] |
Oops, something went wrong.