Skip to content
Merged
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
13 changes: 6 additions & 7 deletions turbogenius/turbo_genius_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,7 +1215,7 @@ def correlated_sampling(
"-opt_det_mat",
"opt_det_mat",
help="flag for opt_det_mat",
is_flag=False,
is_flag=True,
type=bool,
)
@click.option(
Expand All @@ -1229,35 +1229,35 @@ def correlated_sampling(
"-opt_det_basis_exp",
"opt_det_basis_exp",
help="flag for opt_det_basis_exp",
is_flag=False,
is_flag=True,
type=bool,
)
@click.option(
"-opt_jas_basis_exp",
"opt_jas_basis_exp",
help="flag for opt_jas_basis_exp",
is_flag=False,
is_flag=True,
type=bool,
)
@click.option(
"-opt_det_basis_coeff",
"opt_det_basis_coeff",
help="flag for opt_det_basis_coeff",
is_flag=False,
is_flag=True,
type=bool,
)
@click.option(
"-opt_jas_basis_coeff",
"opt_jas_basis_coeff",
help="flag for opt_jas_basis_coeff",
is_flag=False,
is_flag=True,
type=bool,
)
@click.option(
"-twist",
"twist_average",
help="flag for twist_average",
is_flag=False,
is_flag=True,
type=bool,
)
@click.option(
Expand Down Expand Up @@ -1389,7 +1389,6 @@ def lrdmcopt(
lrdmcopt_genius.average(optwarmupsteps=optwarmupsteps, graph_plot=plot_graph)



# --------------------------------------------------------------
# lrdmc command
# --------------------------------------------------------------
Expand Down