EVOLUTION-MANAGER
Edit File: isomorphism_class.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Isomorphism class of a graph</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for isomorphism_class {igraph}"><tr><td>isomorphism_class {igraph}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Isomorphism class of a graph</h2> <h3>Description</h3> <p>The isomorphism class is a non-negative integer number. Graphs (with the same number of vertices) having the same isomorphism class are isomorphic and isomorphic graphs always have the same isomorphism class. Currently it can handle directed graphs with 3 or 4 vertices and undirected graphs with 3 to 6 vertices. </p> <h3>Usage</h3> <pre> isomorphism_class(graph, v) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>graph</code></td> <td> <p>The input graph.</p> </td></tr> <tr valign="top"><td><code>v</code></td> <td> <p>Optionally a vertex sequence. If not missing, then an induced subgraph of the input graph, consisting of this vertices, is used.</p> </td></tr> </table> <h3>Value</h3> <p>An integer number. </p> <h3>See Also</h3> <p>Other graph isomorphism: <code><a href="count_isomorphisms.html">count_isomorphisms</a>()</code>, <code><a href="count_subgraph_isomorphisms.html">count_subgraph_isomorphisms</a>()</code>, <code><a href="graph_from_isomorphism_class.html">graph_from_isomorphism_class</a>()</code>, <code><a href="isomorphic.html">isomorphic</a>()</code>, <code><a href="isomorphisms.html">isomorphisms</a>()</code>, <code><a href="subgraph_isomorphic.html">subgraph_isomorphic</a>()</code>, <code><a href="subgraph_isomorphisms.html">subgraph_isomorphisms</a>()</code> </p> <h3>Examples</h3> <pre> # create some non-isomorphic graphs g1 <- graph_from_isomorphism_class(3, 10) g2 <- graph_from_isomorphism_class(3, 11) isomorphism_class(g1) isomorphism_class(g2) isomorphic(g1, g2) </pre> <hr /><div style="text-align: center;">[Package <em>igraph</em> version 1.3.5 <a href="00Index.html">Index</a>]</div> </body></html>