File tree Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Expand file tree Collapse file tree 2 files changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ def autogen(
337
337
edgsites : list of list of list of int
338
338
List of edge sites for each fragment where each edge is a list of LO indices.
339
339
center : list of list of int
340
- List of center indices for each edge.
340
+ List of the fragment index of each edge site for all fragments .
341
341
edge_idx : list of list of list of int
342
342
List of edge indices for each fragment where each edge index is a list of
343
343
LO indices.
@@ -353,11 +353,6 @@ def autogen(
353
353
Heavy atom indices for each fragment, per fragment
354
354
cen: list
355
355
Atom indices of all centers
356
- hlist: list of lists
357
- All hydrogen atom indices for each fragment, per fragment
358
- add_centers: list of lists
359
- "additional centers" for all fragments, per fragment: contains heavy atoms
360
- which are not centers in any other fragments
361
356
"""
362
357
363
358
if not valence_only :
@@ -772,6 +767,4 @@ def autogen(
772
767
ebe_weight ,
773
768
Frag ,
774
769
cen ,
775
- hlist ,
776
- add_centers ,
777
770
)
Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ def __init__(
58
58
mol = None ,
59
59
frozen_core = False ,
60
60
):
61
- # Initialize class attributes
62
61
self .mol = mol
63
62
self .frag_type = frag_type
64
63
self .fsites = []
@@ -73,12 +72,8 @@ def __init__(
73
72
self .frozen_core = frozen_core
74
73
self .iao_valence_basis = iao_valence_basis
75
74
self .valence_only = valence_only
76
-
77
- # Initialize class attributes necessary for mixed-basis BE
78
75
self .Frag_atom = []
79
76
self .center_atom = []
80
- self .hlist_atom = []
81
- self .add_center_atom = []
82
77
83
78
# Check for frozen core approximation
84
79
if frozen_core :
@@ -135,8 +130,6 @@ def __init__(
135
130
self .ebe_weight ,
136
131
self .Frag_atom ,
137
132
self .center_atom ,
138
- self .hlist_atom ,
139
- self .add_center_atom ,
140
133
) = fgs
141
134
self .Nfrag = len (self .fsites )
142
135
You can’t perform that action at this time.
0 commit comments