-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for bug with mbuild missing edges in bond graph #1049
Conversation
for more information, see https://pre-commit.ci
Fixes Issue #1048 |
Codecov Report
@@ Coverage Diff @@
## main #1049 +/- ##
=======================================
Coverage 90.39% 90.39%
=======================================
Files 64 64
Lines 9027 9027
=======================================
Hits 8160 8160
Misses 867 867
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
@@ -147,7 +147,7 @@ def compose(self, graph): | |||
adj = self._adj | |||
for node, neighbors in graph._adj.items(): | |||
if self.has_node(node): | |||
(adj[node].add(neighbor) for neighbor in neighbors) | |||
[adj[node].add(neighbor) for neighbor in neighbors] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's interesting how this could make such a big different.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
PR Summary:
PR Checklist