Skip to content

Commit d290467

Browse files
Update hypergraph documentation
1 parent 935fd23 commit d290467

217 files changed

Lines changed: 20697 additions & 19952 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: b628fa54c01d8e3cbd1efeb674b18d12
3+
config: eca55591059baa81de1dcedde81efff1
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_modules/easygraph/classes/base.html

Lines changed: 1015 additions & 0 deletions
Large diffs are not rendered by default.

docs/_modules/easygraph/classes/directed_graph.html

Lines changed: 75 additions & 171 deletions
Large diffs are not rendered by default.

docs/_modules/easygraph/classes/directed_multigraph.html

Lines changed: 45 additions & 46 deletions
Large diffs are not rendered by default.

docs/_modules/easygraph/classes/graph.html

Lines changed: 223 additions & 276 deletions
Large diffs are not rendered by default.

docs/_modules/easygraph/classes/graphviews.html

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,17 @@
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>easygraph.classes.graphviews &mdash; EasyGraph 1.4</title>
6+
<title>easygraph.classes.graphviews &mdash; EasyGraph 1.4.1</title>
77
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
88
<link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
99
<link rel="stylesheet" href="../../../_static/my_theme.css" type="text/css" />
1010
<!--[if lt IE 9]>
1111
<script src="../../../_static/js/html5shiv.min.js"></script>
1212
<![endif]-->
1313

14-
<script data-url_root="../../../" id="documentation_options" src="../../../_static/documentation_options.js"></script>
1514
<script src="../../../_static/jquery.js"></script>
16-
<script src="../../../_static/underscore.js"></script>
1715
<script src="../../../_static/_sphinx_javascript_frameworks_compat.js"></script>
16+
<script data-url_root="../../../" id="documentation_options" src="../../../_static/documentation_options.js"></script>
1817
<script src="../../../_static/doctools.js"></script>
1918
<script src="../../../_static/sphinx_highlight.js"></script>
2019
<script src="../../../_static/copybutton.js"></script>
@@ -28,12 +27,16 @@
2827
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
2928
<div class="wy-side-scroll">
3029
<div class="wy-side-nav-search" style="background: white" >
31-
<a href="../../../index.html" class="icon icon-home"> EasyGraph
32-
<img src="../../../_static/logo.png" class="logo" alt="Logo"/>
30+
31+
32+
33+
<a href="../../../index.html" class="icon icon-home">
34+
EasyGraph
35+
<img src="../../../_static/logo.png" class="logo" alt="Logo"/>
3336
</a>
3437
<div role="search">
3538
<form id="rtd-search-form" class="wy-form" action="../../../search.html" method="get">
36-
<input type="text" name="q" placeholder="Search docs" />
39+
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" />
3740
<input type="hidden" name="check_keywords" value="yes" />
3841
<input type="hidden" name="area" value="default" />
3942
</form>
@@ -44,7 +47,6 @@
4447
<li class="toctree-l1"><a class="reference internal" href="../../../install.html">Installation</a></li>
4548
<li class="toctree-l1"><a class="reference internal" href="../../../example.html">Examples of Graph Analysis</a></li>
4649
<li class="toctree-l1"><a class="reference internal" href="../../../hypergraph.html">EasyHypergraph</a></li>
47-
<li class="toctree-l1"><a class="reference internal" href="../../../eggpu.html">EGGPU</a></li>
4850
<li class="toctree-l1"><a class="reference internal" href="../../../reference.html">Reference</a></li>
4951
<li class="toctree-l1"><a class="reference internal" href="../../../tutorial.html">Tutorial</a></li>
5052
<li class="toctree-l1"><a class="reference internal" href="../../../contributorGuide.html">Contributor Guide</a></li>
@@ -67,9 +69,9 @@
6769
<div class="rst-content">
6870
<div role="navigation" aria-label="Page navigation">
6971
<ul class="wy-breadcrumbs">
70-
<li><a href="../../../index.html" class="icon icon-home"></a> &raquo;</li>
71-
<li><a href="../../index.html">Module code</a> &raquo;</li>
72-
<li>easygraph.classes.graphviews</li>
72+
<li><a href="../../../index.html" class="icon icon-home" aria-label="Home"></a></li>
73+
<li class="breadcrumb-item"><a href="../../index.html">Module code</a></li>
74+
<li class="breadcrumb-item active">easygraph.classes.graphviews</li>
7375
<li class="wy-breadcrumbs-aside">
7476
</li>
7577
</ul>
@@ -79,14 +81,14 @@
7981
<div itemprop="articleBody">
8082

8183
<h1>Source code for easygraph.classes.graphviews</h1><div class="highlight"><pre>
82-
<span></span><span class="kn">from</span><span class="w"> </span><span class="nn">easygraph.utils</span><span class="w"> </span><span class="kn">import</span> <span class="n">only_implemented_for_Directed_graph</span>
84+
<span></span><span class="kn">from</span> <span class="nn">easygraph.utils</span> <span class="kn">import</span> <span class="n">only_implemented_for_Directed_graph</span>
8385

8486

8587
<span class="n">__all__</span> <span class="o">=</span> <span class="p">[</span><span class="s2">&quot;reverse_view&quot;</span><span class="p">]</span>
8688

8789

8890
<div class="viewcode-block" id="reverse_view"><a class="viewcode-back" href="../../../reference/easygraph.classes.html#easygraph.classes.graphviews.reverse_view">[docs]</a><span class="nd">@only_implemented_for_Directed_graph</span>
89-
<span class="k">def</span><span class="w"> </span><span class="nf">reverse_view</span><span class="p">(</span><span class="n">G</span><span class="p">):</span>
91+
<span class="k">def</span> <span class="nf">reverse_view</span><span class="p">(</span><span class="n">G</span><span class="p">):</span>
9092
<span class="n">newG</span> <span class="o">=</span> <span class="n">G</span><span class="o">.</span><span class="vm">__class__</span><span class="p">()</span>
9193
<span class="n">newG</span><span class="o">.</span><span class="n">_graph</span> <span class="o">=</span> <span class="n">G</span>
9294
<span class="n">newG</span><span class="o">.</span><span class="n">graph</span> <span class="o">=</span> <span class="n">G</span><span class="o">.</span><span class="n">graph</span>

0 commit comments

Comments
 (0)