Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e16b1fb69a3f2ddbb03f004e9641ad33 > files > 366

python-networkx-doc-1.8.1-3.mga4.noarch.rpm



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Graphical degree sequence &mdash; NetworkX 1.8.1 documentation</title>
    
    <link rel="stylesheet" href="../_static/networkx.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '1.8.1',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  false
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within NetworkX 1.8.1 documentation"
          href="../_static/opensearch.xml"/>
    <link rel="top" title="NetworkX 1.8.1 documentation" href="../index.html" />
    <link rel="up" title="Algorithms" href="algorithms.html" />
    <link rel="next" title="is_graphical" href="generated/networkx.algorithms.graphical.is_graphical.html" />
    <link rel="prev" title="max_flow_min_cost" href="generated/networkx.algorithms.flow.max_flow_min_cost.html" /> 
  </head>
  <body>
<div style="color: black;background-color: white; font-size: 3.2em; text-align: left; padding: 15px 10px 10px 15px">
NetworkX
</div>

    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="generated/networkx.algorithms.graphical.is_graphical.html" title="is_graphical"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="generated/networkx.algorithms.flow.max_flow_min_cost.html" title="max_flow_min_cost"
             accesskey="P">previous</a> |</li>
        <li><a href="http://networkx.github.com/">NetworkX Home </a> |&nbsp;</li>
        <li><a href="http://networkx.github.com/documentation.html">Documentation </a>|&nbsp;</li>
        <li><a href="http://networkx.github.com/download.html">Download </a> |&nbsp;</li>
        <li><a href="http://github.com/networkx">Developer (Github)</a></li>



          <li><a href="index.html" >Reference</a> &raquo;</li>
          <li><a href="pdf_reference.html" >Reference</a> &raquo;</li>
          <li><a href="algorithms.html" accesskey="U">Algorithms</a> &raquo;</li> 
      </ul>
    </div>



      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="generated/networkx.algorithms.flow.max_flow_min_cost.html"
                        title="previous chapter">max_flow_min_cost</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="generated/networkx.algorithms.graphical.is_graphical.html"
                        title="next chapter">is_graphical</a></p>
<div id="searchbox" style="display: none">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <input type="text" name="q" />
      <input type="submit" value="Go" />
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
    <p class="searchtip" style="font-size: 90%">
    Enter search terms or a module, class or function name.
    </p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body">
            
  <div class="section" id="module-networkx.algorithms.graphical">
<span id="graphical-degree-sequence"></span><h1>Graphical degree sequence<a class="headerlink" href="#module-networkx.algorithms.graphical" title="Permalink to this headline">ΒΆ</a></h1>
<p>Test sequences for graphiness.</p>
<table border="1" class="longtable docutils">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td><a class="reference internal" href="generated/networkx.algorithms.graphical.is_graphical.html#networkx.algorithms.graphical.is_graphical" title="networkx.algorithms.graphical.is_graphical"><tt class="xref py py-obj docutils literal"><span class="pre">is_graphical</span></tt></a>(sequence[,&nbsp;method])</td>
<td>Returns True if sequence is a valid degree sequence.</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="generated/networkx.algorithms.graphical.is_digraphical.html#networkx.algorithms.graphical.is_digraphical" title="networkx.algorithms.graphical.is_digraphical"><tt class="xref py py-obj docutils literal"><span class="pre">is_digraphical</span></tt></a>(in_sequence,&nbsp;out_sequence)</td>
<td>Returns True if some directed graph can realize the in- and out-degree</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="generated/networkx.algorithms.graphical.is_multigraphical.html#networkx.algorithms.graphical.is_multigraphical" title="networkx.algorithms.graphical.is_multigraphical"><tt class="xref py py-obj docutils literal"><span class="pre">is_multigraphical</span></tt></a>(sequence)</td>
<td>Returns True if some multigraph can realize the sequence.</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="generated/networkx.algorithms.graphical.is_pseudographical.html#networkx.algorithms.graphical.is_pseudographical" title="networkx.algorithms.graphical.is_pseudographical"><tt class="xref py py-obj docutils literal"><span class="pre">is_pseudographical</span></tt></a>(sequence)</td>
<td>Returns True if some pseudograph can realize the sequence.</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="generated/networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi.html#networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi" title="networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi"><tt class="xref py py-obj docutils literal"><span class="pre">is_valid_degree_sequence_havel_hakimi</span></tt></a>(...)</td>
<td>Returns True if deg_sequence can be realized by a simple graph.</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="generated/networkx.algorithms.graphical.is_valid_degree_sequence_erdos_gallai.html#networkx.algorithms.graphical.is_valid_degree_sequence_erdos_gallai" title="networkx.algorithms.graphical.is_valid_degree_sequence_erdos_gallai"><tt class="xref py py-obj docutils literal"><span class="pre">is_valid_degree_sequence_erdos_gallai</span></tt></a>(...)</td>
<td>Returns True if deg_sequence can be realized by a simple graph.</td>
</tr>
</tbody>
</table>
</div>


          </div>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="../genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="../py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="generated/networkx.algorithms.graphical.is_graphical.html" title="is_graphical"
             >next</a> |</li>
        <li class="right" >
          <a href="generated/networkx.algorithms.flow.max_flow_min_cost.html" title="max_flow_min_cost"
             >previous</a> |</li>
        <li><a href="http://networkx.github.com/">NetworkX Home </a> |&nbsp;</li>
        <li><a href="http://networkx.github.com/documentation.html">Documentation </a>|&nbsp;</li>
        <li><a href="http://networkx.github.com/download.html">Download </a> |&nbsp;</li>
        <li><a href="http://github.com/networkx">Developer (Github)</a></li>



          <li><a href="index.html" >Reference</a> &raquo;</li>
          <li><a href="pdf_reference.html" >Reference</a> &raquo;</li>
          <li><a href="algorithms.html" >Algorithms</a> &raquo;</li> 
      </ul>
    </div>
    <div class="footer">
        &copy; Copyright 2013, NetworkX Developers.
      Last updated on Oct 23, 2013.
      Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
    </div>
  </body>
</html>