pub fn isomorphic_graphs<G1, G2>(
    g1: &G1,
    g2: &G2
) -> StreamResult<bool, G1::Error, G2::Error>
where G1: Graph, G2: Graph,
Expand description

Computes whether two graphs are isomorphic.

Error

If an error occurs while traversing g1, a SourceError is returned.

/// If an error occurs while traversing g2, a SinkError is returned.