Skip to content

Commit e6e1c67

Browse files
committed
Merge branch 'master' into beta
2 parents 3438f0c + d8638ab commit e6e1c67

File tree

49 files changed

+3576
-1496
lines changed

Some content is hidden

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

49 files changed

+3576
-1496
lines changed

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph-1.html

+1-87
Original file line numberDiff line numberDiff line change
@@ -159,33 +159,6 @@ <h5 class="propertyValue">Property Value</h5>
159159
</table>
160160

161161

162-
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_ReferenceVertex_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.ReferenceVertex*"></a>
163-
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_ReferenceVertex" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.ReferenceVertex">ReferenceVertex</h4>
164-
<div class="markdown level1 summary"><p>Return a reference vertex to start traversing Vertices
165-
Time complexity: O(1).</p>
166-
</div>
167-
<div class="markdown level1 conceptual"></div>
168-
<h5 class="decalaration">Declaration</h5>
169-
<div class="codewrapper">
170-
<pre><code class="lang-csharp hljs">public DiGraphVertex&lt;T&gt; ReferenceVertex { get; }</code></pre>
171-
</div>
172-
<h5 class="propertyValue">Property Value</h5>
173-
<table class="table table-bordered table-striped table-condensed">
174-
<thead>
175-
<tr>
176-
<th>Type</th>
177-
<th>Description</th>
178-
</tr>
179-
</thead>
180-
<tbody>
181-
<tr>
182-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraphVertex-1.html">DiGraphVertex</a>&lt;T&gt;</td>
183-
<td></td>
184-
</tr>
185-
</tbody>
186-
</table>
187-
188-
189162
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesAsEnumberable*"></a>
190163
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesAsEnumberable">VerticesAsEnumberable</h4>
191164
<div class="markdown level1 summary"></div>
@@ -280,7 +253,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_AddVert
280253
<div class="markdown level1 conceptual"></div>
281254
<h5 class="decalaration">Declaration</h5>
282255
<div class="codewrapper">
283-
<pre><code class="lang-csharp hljs">public DiGraphVertex&lt;T&gt; AddVertex(T value)</code></pre>
256+
<pre><code class="lang-csharp hljs">public void AddVertex(T value)</code></pre>
284257
</div>
285258
<h5 class="parameters">Parameters</h5>
286259
<table class="table table-bordered table-striped table-condensed">
@@ -299,21 +272,6 @@ <h5 class="parameters">Parameters</h5>
299272
</tr>
300273
</tbody>
301274
</table>
302-
<h5 class="returns">Returns</h5>
303-
<table class="table table-bordered table-striped table-condensed">
304-
<thead>
305-
<tr>
306-
<th>Type</th>
307-
<th>Description</th>
308-
</tr>
309-
</thead>
310-
<tbody>
311-
<tr>
312-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraphVertex-1.html">DiGraphVertex</a>&lt;T&gt;</td>
313-
<td></td>
314-
</tr>
315-
</tbody>
316-
</table>
317275

318276

319277
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_Clone_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.Clone*"></a>
@@ -384,50 +342,6 @@ <h5 class="returns">Returns</h5>
384342
</table>
385343

386344

387-
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_FindVertex_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.FindVertex*"></a>
388-
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_FindVertex__0_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.FindVertex(`0)">FindVertex(T)</h4>
389-
<div class="markdown level1 summary"><p>Returns the vertex object with given value.
390-
Time complexity: O(1).</p>
391-
</div>
392-
<div class="markdown level1 conceptual"></div>
393-
<h5 class="decalaration">Declaration</h5>
394-
<div class="codewrapper">
395-
<pre><code class="lang-csharp hljs">public DiGraphVertex&lt;T&gt; FindVertex(T value)</code></pre>
396-
</div>
397-
<h5 class="parameters">Parameters</h5>
398-
<table class="table table-bordered table-striped table-condensed">
399-
<thead>
400-
<tr>
401-
<th>Type</th>
402-
<th>Name</th>
403-
<th>Description</th>
404-
</tr>
405-
</thead>
406-
<tbody>
407-
<tr>
408-
<td><span class="xref">T</span></td>
409-
<td><span class="parametername">value</span></td>
410-
<td></td>
411-
</tr>
412-
</tbody>
413-
</table>
414-
<h5 class="returns">Returns</h5>
415-
<table class="table table-bordered table-striped table-condensed">
416-
<thead>
417-
<tr>
418-
<th>Type</th>
419-
<th>Description</th>
420-
</tr>
421-
</thead>
422-
<tbody>
423-
<tr>
424-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraphVertex-1.html">DiGraphVertex</a>&lt;T&gt;</td>
425-
<td></td>
426-
</tr>
427-
</tbody>
428-
</table>
429-
430-
431345
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.GetEnumerator*"></a>
432346
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.GetEnumerator">GetEnumerator()</h4>
433347
<div class="markdown level1 summary"></div>

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph-1.html

+1-87
Original file line numberDiff line numberDiff line change
@@ -158,33 +158,6 @@ <h5 class="propertyValue">Property Value</h5>
158158
</table>
159159

160160

161-
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_ReferenceVertex_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.ReferenceVertex*"></a>
162-
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_ReferenceVertex" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.ReferenceVertex">ReferenceVertex</h4>
163-
<div class="markdown level1 summary"><p>Returns a reference vertex.
164-
Time complexity: O(1).</p>
165-
</div>
166-
<div class="markdown level1 conceptual"></div>
167-
<h5 class="decalaration">Declaration</h5>
168-
<div class="codewrapper">
169-
<pre><code class="lang-csharp hljs">public GraphVertex&lt;T&gt; ReferenceVertex { get; }</code></pre>
170-
</div>
171-
<h5 class="propertyValue">Property Value</h5>
172-
<table class="table table-bordered table-striped table-condensed">
173-
<thead>
174-
<tr>
175-
<th>Type</th>
176-
<th>Description</th>
177-
</tr>
178-
</thead>
179-
<tbody>
180-
<tr>
181-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.GraphVertex-1.html">GraphVertex</a>&lt;T&gt;</td>
182-
<td></td>
183-
</tr>
184-
</tbody>
185-
</table>
186-
187-
188161
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesAsEnumberable*"></a>
189162
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesAsEnumberable">VerticesAsEnumberable</h4>
190163
<div class="markdown level1 summary"></div>
@@ -279,7 +252,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_AddVertex
279252
<div class="markdown level1 conceptual"></div>
280253
<h5 class="decalaration">Declaration</h5>
281254
<div class="codewrapper">
282-
<pre><code class="lang-csharp hljs">public GraphVertex&lt;T&gt; AddVertex(T value)</code></pre>
255+
<pre><code class="lang-csharp hljs">public void AddVertex(T value)</code></pre>
283256
</div>
284257
<h5 class="parameters">Parameters</h5>
285258
<table class="table table-bordered table-striped table-condensed">
@@ -298,21 +271,6 @@ <h5 class="parameters">Parameters</h5>
298271
</tr>
299272
</tbody>
300273
</table>
301-
<h5 class="returns">Returns</h5>
302-
<table class="table table-bordered table-striped table-condensed">
303-
<thead>
304-
<tr>
305-
<th>Type</th>
306-
<th>Description</th>
307-
</tr>
308-
</thead>
309-
<tbody>
310-
<tr>
311-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.GraphVertex-1.html">GraphVertex</a>&lt;T&gt;</td>
312-
<td></td>
313-
</tr>
314-
</tbody>
315-
</table>
316274

317275

318276
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_Clone_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.Clone*"></a>
@@ -425,50 +383,6 @@ <h5 class="returns">Returns</h5>
425383
</table>
426384

427385

428-
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_FindVertex_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.FindVertex*"></a>
429-
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_FindVertex__0_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.FindVertex(`0)">FindVertex(T)</h4>
430-
<div class="markdown level1 summary"><p>Returns the vertex object with the given value.
431-
Time complexity: O(1).</p>
432-
</div>
433-
<div class="markdown level1 conceptual"></div>
434-
<h5 class="decalaration">Declaration</h5>
435-
<div class="codewrapper">
436-
<pre><code class="lang-csharp hljs">public GraphVertex&lt;T&gt; FindVertex(T value)</code></pre>
437-
</div>
438-
<h5 class="parameters">Parameters</h5>
439-
<table class="table table-bordered table-striped table-condensed">
440-
<thead>
441-
<tr>
442-
<th>Type</th>
443-
<th>Name</th>
444-
<th>Description</th>
445-
</tr>
446-
</thead>
447-
<tbody>
448-
<tr>
449-
<td><span class="xref">T</span></td>
450-
<td><span class="parametername">value</span></td>
451-
<td></td>
452-
</tr>
453-
</tbody>
454-
</table>
455-
<h5 class="returns">Returns</h5>
456-
<table class="table table-bordered table-striped table-condensed">
457-
<thead>
458-
<tr>
459-
<th>Type</th>
460-
<th>Description</th>
461-
</tr>
462-
</thead>
463-
<tbody>
464-
<tr>
465-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.GraphVertex-1.html">GraphVertex</a>&lt;T&gt;</td>
466-
<td></td>
467-
</tr>
468-
</tbody>
469-
</table>
470-
471-
472386
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.GetEnumerator*"></a>
473387
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.GetEnumerator">GetEnumerator()</h4>
474388
<div class="markdown level1 summary"></div>

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph-2.html

+1-87
Original file line numberDiff line numberDiff line change
@@ -163,33 +163,6 @@ <h5 class="propertyValue">Property Value</h5>
163163
</table>
164164

165165

166-
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_ReferenceVertex_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.ReferenceVertex*"></a>
167-
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_ReferenceVertex" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.ReferenceVertex">ReferenceVertex</h4>
168-
<div class="markdown level1 summary"><p>Returns a reference vertex.
169-
Time complexity: O(1).</p>
170-
</div>
171-
<div class="markdown level1 conceptual"></div>
172-
<h5 class="decalaration">Declaration</h5>
173-
<div class="codewrapper">
174-
<pre><code class="lang-csharp hljs">public WeightedDiGraphVertex&lt;T, TW&gt; ReferenceVertex { get; }</code></pre>
175-
</div>
176-
<h5 class="propertyValue">Property Value</h5>
177-
<table class="table table-bordered table-striped table-condensed">
178-
<thead>
179-
<tr>
180-
<th>Type</th>
181-
<th>Description</th>
182-
</tr>
183-
</thead>
184-
<tbody>
185-
<tr>
186-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraphVertex-2.html">WeightedDiGraphVertex</a>&lt;T, TW&gt;</td>
187-
<td></td>
188-
</tr>
189-
</tbody>
190-
</table>
191-
192-
193166
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesAsEnumberable*"></a>
194167
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesAsEnumberable">VerticesAsEnumberable</h4>
195168
<div class="markdown level1 summary"></div>
@@ -289,7 +262,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2
289262
<div class="markdown level1 conceptual"></div>
290263
<h5 class="decalaration">Declaration</h5>
291264
<div class="codewrapper">
292-
<pre><code class="lang-csharp hljs">public WeightedDiGraphVertex&lt;T, TW&gt; AddVertex(T value)</code></pre>
265+
<pre><code class="lang-csharp hljs">public void AddVertex(T value)</code></pre>
293266
</div>
294267
<h5 class="parameters">Parameters</h5>
295268
<table class="table table-bordered table-striped table-condensed">
@@ -308,21 +281,6 @@ <h5 class="parameters">Parameters</h5>
308281
</tr>
309282
</tbody>
310283
</table>
311-
<h5 class="returns">Returns</h5>
312-
<table class="table table-bordered table-striped table-condensed">
313-
<thead>
314-
<tr>
315-
<th>Type</th>
316-
<th>Description</th>
317-
</tr>
318-
</thead>
319-
<tbody>
320-
<tr>
321-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraphVertex-2.html">WeightedDiGraphVertex</a>&lt;T, TW&gt;</td>
322-
<td></td>
323-
</tr>
324-
</tbody>
325-
</table>
326284

327285

328286
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_Clone_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.Clone*"></a>
@@ -393,50 +351,6 @@ <h5 class="returns">Returns</h5>
393351
</table>
394352

395353

396-
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_FindVertex_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.FindVertex*"></a>
397-
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_FindVertex__0_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.FindVertex(`0)">FindVertex(T)</h4>
398-
<div class="markdown level1 summary"><p>Returns the vertex with given value.
399-
Time complexity: O(1).</p>
400-
</div>
401-
<div class="markdown level1 conceptual"></div>
402-
<h5 class="decalaration">Declaration</h5>
403-
<div class="codewrapper">
404-
<pre><code class="lang-csharp hljs">public WeightedDiGraphVertex&lt;T, TW&gt; FindVertex(T value)</code></pre>
405-
</div>
406-
<h5 class="parameters">Parameters</h5>
407-
<table class="table table-bordered table-striped table-condensed">
408-
<thead>
409-
<tr>
410-
<th>Type</th>
411-
<th>Name</th>
412-
<th>Description</th>
413-
</tr>
414-
</thead>
415-
<tbody>
416-
<tr>
417-
<td><span class="xref">T</span></td>
418-
<td><span class="parametername">value</span></td>
419-
<td></td>
420-
</tr>
421-
</tbody>
422-
</table>
423-
<h5 class="returns">Returns</h5>
424-
<table class="table table-bordered table-striped table-condensed">
425-
<thead>
426-
<tr>
427-
<th>Type</th>
428-
<th>Description</th>
429-
</tr>
430-
</thead>
431-
<tbody>
432-
<tr>
433-
<td><a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraphVertex-2.html">WeightedDiGraphVertex</a>&lt;T, TW&gt;</td>
434-
<td></td>
435-
</tr>
436-
</tbody>
437-
</table>
438-
439-
440354
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.GetEnumerator*"></a>
441355
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.GetEnumerator">GetEnumerator()</h4>
442356
<div class="markdown level1 summary"></div>

0 commit comments

Comments
 (0)