We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cartesian_graph(...)
Introduce cartesian_graph(dims...) for making a NamedGraph with cartesian vertex names, i.e.:
cartesian_graph(dims...)
NamedGraph
cartesian_graph(2, 2)
would have vertices [(1, 1), (1, 2), (2, 1), (2, 2)].
[(1, 1), (1, 2), (2, 1), (2, 2)]
Additionally,
cartesian_graph(grid((2, 2)), (2, 2))
to wrap a SimpleGraph in a NamedGraph with cartesian vertices.
SimpleGraph
The text was updated successfully, but these errors were encountered:
cartesian_graph
No branches or pull requests
Introduce
cartesian_graph(dims...)
for making aNamedGraph
with cartesian vertex names, i.e.:would have vertices
[(1, 1), (1, 2), (2, 1), (2, 2)]
.Additionally,
to wrap a
SimpleGraph
in aNamedGraph
with cartesian vertices.The text was updated successfully, but these errors were encountered: