-
Notifications
You must be signed in to change notification settings - Fork 164
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
Move barbell_graph generator to rustworkx-core #783
Conversation
Pull Request Test Coverage Report for Build 3912640099
💛 - Coveralls |
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.
I think I found why your docstrings were failing
src/generators.rs
Outdated
@@ -1456,6 +1455,12 @@ pub fn generalized_petersen_graph( | |||
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and | |||
/// won't allow parallel edges to be added. Instead | |||
/// calls which would create a parallel edge will update the existing edge. | |||
/// :param list mesh_weights - A list of node weights for the mesh graph. If both |
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.
/// :param list mesh_weights - A list of node weights for the mesh graph. If both | |
/// :param list mesh_weights: A list of node weights for the mesh graph. If both |
src/generators.rs
Outdated
/// :param list mesh_weights - A list of node weights for the mesh graph. If both | ||
/// ``num_mesh_nodes`` and ``mesh_weights`` are set ``num_mesh_nodes`` will | ||
/// be ignored and ``mesh_weights`` will be used. | ||
/// :param list path_weights - A list of node weights for the path. If both |
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.
/// :param list path_weights - A list of node weights for the path. If both | |
/// :param list path_weights: A list of node weights for the path. If both |
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.
👍🏻
his PR migrates the barbell_graph generator to rustwokx-core. It's based on #758.