You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update adsorbate_shift_up_resonance_structures with double_or_triple function
update adsorbate_conjugate_resonance_structure with double_or_triple function
if (bond12.is_double() andbond23.is_single() andbond34.is_double()) or (bond23.is_double() andbond12.is_double() andbond34.is_double()) or (bond12.is_triple() andbond23.is_single() andbond34.is_triple()) or (bond12.is_triple() andbond23.is_single() andbond34.is_double()):
1184
-
bond12.decrement_order()
1185
-
bond23.increment_order()
1186
-
bond34.decrement_order()
1187
-
structure=mol.copy(deep=True)
1188
-
bond12.increment_order()
1189
-
bond23.decrement_order()
1190
-
bond34.increment_order()
1191
-
try:
1192
-
structure.update_atomtypes(log_species=False)
1193
-
exceptAtomTypeError:
1194
-
pass
1195
-
else:
1196
-
structures.append(structure)
1183
+
if ((bond12.is_double_or_triple() andbond23.is_single() andbond34.is_double_or_triple()) or
0 commit comments