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
In conversations, there are a few constraints that are possible to test:
Enforcing return types (if you pass a DiGraph, you shouldn't get Graph back).
Enforcing equal numbers of nodes and edges after rewiring.
Does the algorithm handle the empty graph and the complete graph correctly?
In general, these algorithms are going to be highly nondeterministic, which presents a challenge for testing them. But ideally we can come up with some things that cover most rewirers (even if we have to have exceptions).
The text was updated successfully, but these errors were encountered:
In conversations, there are a few constraints that are possible to test:
DiGraph
, you shouldn't getGraph
back).In general, these algorithms are going to be highly nondeterministic, which presents a challenge for testing them. But ideally we can come up with some things that cover most rewirers (even if we have to have exceptions).
The text was updated successfully, but these errors were encountered: