Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > e5ddaa4c8aef3b801d60a051db101461 > files > 1761

python-networkx-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>is_valid_degree_sequence_erdos_gallai &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="Graphical degree sequence" href="../algorithms.graphical.html" />
    <link rel="next" title="Hierarchy" href="../algorithms.hierarchy.html" />
    <link rel="prev" title="is_valid_degree_sequence_havel_hakimi" href="networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi.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="../algorithms.hierarchy.html" title="Hierarchy"
             accesskey="N">next</a> |</li>
        <li class="right" >
          <a href="networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi.html" title="is_valid_degree_sequence_havel_hakimi"
             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" >Algorithms</a> &raquo;</li>
          <li><a href="../algorithms.graphical.html" accesskey="U">Graphical degree sequence</a> &raquo;</li> 
      </ul>
    </div>



      <div class="sphinxsidebar">
        <div class="sphinxsidebarwrapper">
  <h4>Previous topic</h4>
  <p class="topless"><a href="networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi.html"
                        title="previous chapter">is_valid_degree_sequence_havel_hakimi</a></p>
  <h4>Next topic</h4>
  <p class="topless"><a href="../algorithms.hierarchy.html"
                        title="next chapter">Hierarchy</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="is-valid-degree-sequence-erdos-gallai">
<h1>is_valid_degree_sequence_erdos_gallai<a class="headerlink" href="#is-valid-degree-sequence-erdos-gallai" title="Permalink to this headline">¶</a></h1>
<dl class="function">
<dt id="networkx.algorithms.graphical.is_valid_degree_sequence_erdos_gallai">
<tt class="descname">is_valid_degree_sequence_erdos_gallai</tt><big>(</big><em>deg_sequence</em><big>)</big><a class="reference internal" href="../../_modules/networkx/algorithms/graphical.html#is_valid_degree_sequence_erdos_gallai"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#networkx.algorithms.graphical.is_valid_degree_sequence_erdos_gallai" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns True if deg_sequence can be realized by a simple graph.</p>
<p>The validation is done using the Erdős-Gallai theorem <a class="reference internal" href="../../bibliography.html#eg1960">[EG1960]</a>.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters :</th><td class="field-body"><p class="first"><strong>deg_sequence</strong> : list</p>
<blockquote>
<div><p>A list of integers</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns :</th><td class="field-body"><p class="first"><strong>valid</strong> : bool</p>
<blockquote class="last">
<div><p>True if deg_sequence is graphical and False if not.</p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>This implementation uses an equivalent form of the Erdős-Gallai criterion.
Worst-case run time is: O(n) where n is the length of the sequence.</p>
<p>Specifically, a sequence d is graphical if and only if the
sum of the sequence is even and for all strong indices k in the sequence,</p>
<blockquote>
<div><div class="math">
<p><span class="math">\sum_{i=1}^{k} d_i \leq k(k-1) + \sum_{j=k+1}^{n} \min(d_i,k)
      = k(n-1) - ( k \sum_{j=0}^{k-1} n_j - \sum_{j=0}^{k-1} j n_j )</span></p>
</div></div></blockquote>
<p>A strong index k is any index where <span class="math">d_k \geq k</span> and the value <span class="math">n_j</span> is the
number of occurrences of j in d.  The maximal strong index is called the
Durfee index.</p>
<p>This particular rearrangement comes from the proof of Theorem 3 in <a class="reference internal" href="#r226">[R226]</a>.</p>
<p>The ZZ condition says that for the sequence d if</p>
<div class="math">
<p><span class="math">|d| &gt;= \frac{(\max(d) + \min(d) + 1)^2}{4*\min(d)}</span></p>
</div><p>then d is graphical.  This was shown in Theorem 6 in <a class="reference internal" href="#r226">[R226]</a>.</p>
<p class="rubric">References</p>
<table class="docutils citation" frame="void" id="r225" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label"><a class="fn-backref" href="#id6">[R225]</a></td><td>A. Tripathi and S. Vijay. &#8220;A note on a theorem of Erdős &amp; Gallai&#8221;,
Discrete Mathematics, 265, pp. 417-420 (2003).</td></tr>
</tbody>
</table>
<table class="docutils citation" frame="void" id="r226" rules="none">
<colgroup><col class="label" /><col /></colgroup>
<tbody valign="top">
<tr><td class="label">[R226]</td><td><em>(<a class="fn-backref" href="#id2">1</a>, <a class="fn-backref" href="#id3">2</a>, <a class="fn-backref" href="#id7">3</a>)</em> I.E. Zverovich and V.E. Zverovich. &#8220;Contributions to the theory
of graphic sequences&#8221;, Discrete Mathematics, 105, pp. 292-303 (1992).</td></tr>
</tbody>
</table>
<p><a class="reference internal" href="../../bibliography.html#eg1960">[EG1960]</a>, <a class="reference internal" href="../../bibliography.html#choudum1986">[choudum1986]</a></p>
</dd></dl>

</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="../algorithms.hierarchy.html" title="Hierarchy"
             >next</a> |</li>
        <li class="right" >
          <a href="networkx.algorithms.graphical.is_valid_degree_sequence_havel_hakimi.html" title="is_valid_degree_sequence_havel_hakimi"
             >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>
          <li><a href="../algorithms.graphical.html" >Graphical degree sequence</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>