Skip to content

Commit 0f1a67a

Browse files
committed
chore: regenerated C docs
1 parent eadde5f commit 0f1a67a

Some content is hidden

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

55 files changed

+21535
-14280
lines changed

c/html/develop/igraph-Advanced.html

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010

1111
{% raw %}
1212
<div class="navigation-header mb-4" width="100%" summary="Navigation header"><div class="btn-group">
13-
<a accesskey="p" class="btn btn-light" href="igraph-Bipartite.html"><i class="fa fa-chevron-left"></i>
13+
<a accesskey="p" class="btn btn-light" href="igraph-Nongraph.html"><i class="fa fa-chevron-left"></i>
1414
Previous
1515
</a><a accesskey="h" class="btn btn-light" href="index.html"><i class="fa fa-home"></i>
1616
Home
17-
</a><a accesskey="n" class="btn btn-light" href="igraph-Nongraph.html"><i class="fa fa-chevron-right"></i>
17+
</a><a accesskey="n" class="btn btn-light" href="igraph-Glossary.html"><i class="fa fa-chevron-right"></i>
1818
Next
1919
</a>
2020
</div></div>
2121
<div class="chapter">
2222
<div class="titlepage"><div><div><h1 class="title">
23-
<a name="igraph-Advanced"></a>Chapter 31. Advanced igraph programming</h1></div></div></div>
23+
<a name="igraph-Advanced"></a>Chapter 34. Advanced igraph programming</h1></div></div></div>
2424
<div class="toc"><dl class="toc">
2525
<dt><span class="section"><a href="igraph-Advanced.html#using-igraph-in-multi-threaded-programs">1. Using igraph in multi-threaded programs</a></span></dt>
2626
<dt><span class="section"><a href="igraph-Advanced.html#igraph-Progress">2. Progress handlers</a></span></dt>
@@ -49,7 +49,7 @@
4949
<div class="section">
5050
<div class="titlepage"><div><div><h3 class="title">
5151
<a name="IGRAPH_THREAD_SAFE"></a>1.1. <code class="function">IGRAPH_THREAD_SAFE</code> — Specifies whether igraph was built in thread-safe mode.</h3></div></div></div>
52-
<a class="indexterm" name="id-1.32.2.3.2"></a><p>
52+
<a class="indexterm" name="id-1.35.2.3.2"></a><p>
5353
</p>
5454
<pre class="programlisting">
5555
#define IGRAPH_THREAD_SAFE
@@ -133,7 +133,7 @@
133133
<div class="section">
134134
<div class="titlepage"><div><div><h4 class="title">
135135
<a name="igraph_progress_handler_t"></a>2.2.1. <code class="function">igraph_progress_handler_t</code> — Type of progress handler functions</h4></div></div></div>
136-
<a class="indexterm" name="id-1.32.3.3.2.2"></a><pre class="programlisting">
136+
<a class="indexterm" name="id-1.35.3.3.2.2"></a><pre class="programlisting">
137137
typedef igraph_error_t igraph_progress_handler_t(const char *message, igraph_real_t percent,
138138
void *data);
139139
</pre>
@@ -205,7 +205,7 @@
205205
<div class="section">
206206
<div class="titlepage"><div><div><h4 class="title">
207207
<a name="igraph_set_progress_handler"></a>2.2.2. <code class="function">igraph_set_progress_handler</code> — Install a progress handler, or remove the current handler.</h4></div></div></div>
208-
<a class="indexterm" name="id-1.32.3.3.3.2"></a><p>
208+
<a class="indexterm" name="id-1.35.3.3.3.2"></a><p>
209209
</p>
210210
<div class="informalexample"><pre class="programlisting">
211211
igraph_progress_handler_t *
@@ -261,7 +261,7 @@
261261
<div class="section">
262262
<div class="titlepage"><div><div><h4 class="title">
263263
<a name="igraph_progress_handler_stderr"></a>2.2.3. <code class="function">igraph_progress_handler_stderr</code> — A simple predefined progress handler.</h4></div></div></div>
264-
<a class="indexterm" name="id-1.32.3.3.4.2"></a><p>
264+
<a class="indexterm" name="id-1.35.3.3.4.2"></a><p>
265265
</p>
266266
<div class="informalexample"><pre class="programlisting">
267267
igraph_error_t igraph_progress_handler_stderr(const char *message, igraph_real_t percent,
@@ -345,7 +345,7 @@
345345
<div class="section">
346346
<div class="titlepage"><div><div><h4 class="title">
347347
<a name="IGRAPH_PROGRESS"></a>2.3.1. <code class="function">IGRAPH_PROGRESS</code> — Report the progress of a calculation from an igraph function (macro variant).</h4></div></div></div>
348-
<a class="indexterm" name="id-1.32.3.4.2.2"></a><p>
348+
<a class="indexterm" name="id-1.35.3.4.2.2"></a><p>
349349
</p>
350350
<pre class="programlisting">
351351
#define IGRAPH_PROGRESS(message, percent, data)
@@ -412,7 +412,7 @@
412412
<div class="section">
413413
<div class="titlepage"><div><div><h4 class="title">
414414
<a name="IGRAPH_PROGRESSF"></a>2.3.2. <code class="function">IGRAPH_PROGRESSF</code> — Report the progress of a calculation from an igraph function, printf-like (macro variant).</h4></div></div></div>
415-
<a class="indexterm" name="id-1.32.3.4.3.2"></a><p>
415+
<a class="indexterm" name="id-1.35.3.4.3.2"></a><p>
416416
</p>
417417
<pre class="programlisting">
418418
#define IGRAPH_PROGRESSF(args)
@@ -468,7 +468,7 @@
468468
<div class="section">
469469
<div class="titlepage"><div><div><h4 class="title">
470470
<a name="igraph_progress"></a>2.3.3. <code class="function">igraph_progress</code> — Report the progress of a calculation from an igraph function.</h4></div></div></div>
471-
<a class="indexterm" name="id-1.32.3.4.4.2"></a><p>
471+
<a class="indexterm" name="id-1.35.3.4.4.2"></a><p>
472472
</p>
473473
<div class="informalexample"><pre class="programlisting">
474474
igraph_error_t igraph_progress(const char *message, igraph_real_t percent, void *data);
@@ -543,7 +543,7 @@
543543
<div class="section">
544544
<div class="titlepage"><div><div><h4 class="title">
545545
<a name="igraph_progressf"></a>2.3.4. <code class="function">igraph_progressf</code> — Report the progress of a calculation from an igraph function, printf-like.</h4></div></div></div>
546-
<a class="indexterm" name="id-1.32.3.4.5.2"></a><p>
546+
<a class="indexterm" name="id-1.35.3.4.5.2"></a><p>
547547
</p>
548548
<div class="informalexample"><pre class="programlisting">
549549
igraph_error_t igraph_progressf(const char *message, igraph_real_t percent, void *data,
@@ -722,7 +722,7 @@
722722
<div class="section">
723723
<div class="titlepage"><div><div><h4 class="title">
724724
<a name="igraph_status_handler_t"></a>3.2.1. <code class="function">igraph_status_handler_t</code> — The type of the igraph status handler functions</h4></div></div></div>
725-
<a class="indexterm" name="id-1.32.4.3.2.2"></a><pre class="programlisting">
725+
<a class="indexterm" name="id-1.35.4.3.2.2"></a><pre class="programlisting">
726726
typedef igraph_error_t igraph_status_handler_t(const char *message, void *data);
727727
</pre>
728728
<p>
@@ -774,7 +774,7 @@
774774
<div class="section">
775775
<div class="titlepage"><div><div><h4 class="title">
776776
<a name="igraph_set_status_handler"></a>3.2.2. <code class="function">igraph_set_status_handler</code> — Install of uninstall a status handler function.</h4></div></div></div>
777-
<a class="indexterm" name="id-1.32.4.3.3.2"></a><p>
777+
<a class="indexterm" name="id-1.35.4.3.3.2"></a><p>
778778
</p>
779779
<div class="informalexample"><pre class="programlisting">
780780
igraph_status_handler_t *
@@ -827,7 +827,7 @@
827827
<div class="section">
828828
<div class="titlepage"><div><div><h4 class="title">
829829
<a name="igraph_status_handler_stderr"></a>3.2.3. <code class="function">igraph_status_handler_stderr</code> — A simple predefined status handler function.</h4></div></div></div>
830-
<a class="indexterm" name="id-1.32.4.3.4.2"></a><p>
830+
<a class="indexterm" name="id-1.35.4.3.4.2"></a><p>
831831
</p>
832832
<div class="informalexample"><pre class="programlisting">
833833
igraph_error_t igraph_status_handler_stderr(const char *message, void *data);
@@ -899,7 +899,7 @@
899899
<div class="section">
900900
<div class="titlepage"><div><div><h4 class="title">
901901
<a name="IGRAPH_STATUS"></a>3.3.1. <code class="function">IGRAPH_STATUS</code> — Report the status of an igraph function.</h4></div></div></div>
902-
<a class="indexterm" name="id-1.32.4.4.2.2"></a><p>
902+
<a class="indexterm" name="id-1.35.4.4.2.2"></a><p>
903903
</p>
904904
<pre class="programlisting">
905905
#define IGRAPH_STATUS(message, data)
@@ -962,7 +962,7 @@
962962
<div class="section">
963963
<div class="titlepage"><div><div><h4 class="title">
964964
<a name="IGRAPH_STATUSF"></a>3.3.2. <code class="function">IGRAPH_STATUSF</code> — Report the status from an igraph function</h4></div></div></div>
965-
<a class="indexterm" name="id-1.32.4.4.3.2"></a><p>
965+
<a class="indexterm" name="id-1.35.4.4.3.2"></a><p>
966966
</p>
967967
<pre class="programlisting">
968968
#define IGRAPH_STATUSF(args)
@@ -1018,7 +1018,7 @@
10181018
<div class="section">
10191019
<div class="titlepage"><div><div><h4 class="title">
10201020
<a name="igraph_status"></a>3.3.3. <code class="function">igraph_status</code> — Reports status from an igraph function.</h4></div></div></div>
1021-
<a class="indexterm" name="id-1.32.4.4.4.2"></a><p>
1021+
<a class="indexterm" name="id-1.35.4.4.4.2"></a><p>
10221022
</p>
10231023
<div class="informalexample"><pre class="programlisting">
10241024
igraph_error_t igraph_status(const char *message, void *data);
@@ -1085,7 +1085,7 @@
10851085
<div class="section">
10861086
<div class="titlepage"><div><div><h4 class="title">
10871087
<a name="igraph_statusf"></a>3.3.4. <code class="function">igraph_statusf</code> — Report status, more flexible printf-like version.</h4></div></div></div>
1088-
<a class="indexterm" name="id-1.32.4.4.5.2"></a><p>
1088+
<a class="indexterm" name="id-1.35.4.4.5.2"></a><p>
10891089
</p>
10901090
<div class="informalexample"><pre class="programlisting">
10911091
igraph_error_t igraph_statusf(const char *message, void *data, ...);
@@ -1157,7 +1157,7 @@
11571157
</div>
11581158
</div>
11591159
<table class="navigation-footer" width="100%" summary="Navigation footer" cellpadding="2" cellspacing="0"><tr valign="middle">
1160-
<td align="left"><a accesskey="p" href="igraph-Bipartite.html"><b>← Chapter 30. Bipartite, i.e. two-mode graphs</b></a></td>
1161-
<td align="right"><a accesskey="n" href="igraph-Nongraph.html"><b>Chapter 32. Non-graph related functions  →</b></a></td>
1160+
<td align="left"><a accesskey="p" href="igraph-Nongraph.html"><b>← Chapter 33. Non-graph related functions </b></a></td>
1161+
<td align="right"><a accesskey="n" href="igraph-Glossary.html"><b>Chapter 35. Glossary →</b></a></td>
11621162
</tr></table>
11631163
{% endraw %}

0 commit comments

Comments
 (0)