We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4340dc commit a217bd8Copy full SHA for a217bd8
1 file changed
src/openfermion/resource_estimates/pbc/thc/factorizations/isdf.py
@@ -575,12 +575,9 @@ def kpoint_isdf_double_translation(
575
num_kpts = len(kpts)
576
num_interp_points = xi.shape[1]
577
assert xi.shape == (num_grid_points, num_interp_points)
578
- (
579
- g_vectors,
580
- g_mapping,
581
- g_mapping_unique,
582
- delta_gs_unique,
583
- ) = build_g_vector_mappings_double_translation(df_inst.cell, kpts, momentum_map)
+ (g_vectors, g_mapping, g_mapping_unique, delta_gs_unique) = (
+ build_g_vector_mappings_double_translation(df_inst.cell, kpts, momentum_map)
+ )
584
if only_unique_g:
585
g_mapping = g_mapping_unique
586
delta_gs = delta_gs_unique
0 commit comments