Skip to content

Commit

Permalink
Temporary: don't check for duplicates when loading kinetics libraries
Browse files Browse the repository at this point in the history
Doing so is slow. For now we'll assume our libraries are
good ;-D
  • Loading branch information
rwest committed Apr 16, 2020
1 parent 8bd219c commit 5c4566b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rmgpy/data/kinetics/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,8 @@ def load(self, path, local_context=None, global_context=None):
.format(rxn, self.label, len(rxn.products)))

if not self.auto_generated:
self.check_for_duplicates()
# when importing models we load a lot of libraries and this takes forEVER
# self.check_for_duplicates()
self.convert_duplicates_to_multi()

def load_entry(self,
Expand Down

0 comments on commit 5c4566b

Please sign in to comment.