Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 1280a9d763ea6574bb6098d1ca3767c9 > files > 163

ocaml-ocamlgraph-doc-1.1-1mdv2010.0.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="style.css" type="text/css">
<meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type">
<link rel="Start" href="index.html">
<link rel="next" href="Sig_pack.html">
<link rel="Up" href="index.html">
<link title="Index of types" rel=Appendix href="index_types.html">
<link title="Index of exceptions" rel=Appendix href="index_exceptions.html">
<link title="Index of values" rel=Appendix href="index_values.html">
<link title="Index of modules" rel=Appendix href="index_modules.html">
<link title="Index of module types" rel=Appendix href="index_module_types.html">
<link title="Sig" rel="Chapter" href="Sig.html">
<link title="Sig_pack" rel="Chapter" href="Sig_pack.html">
<link title="Dot_ast" rel="Chapter" href="Dot_ast.html">
<link title="Util" rel="Chapter" href="Util.html">
<link title="Persistent" rel="Chapter" href="Persistent.html">
<link title="Imperative" rel="Chapter" href="Imperative.html">
<link title="Delaunay" rel="Chapter" href="Delaunay.html">
<link title="Builder" rel="Chapter" href="Builder.html">
<link title="Classic" rel="Chapter" href="Classic.html">
<link title="Rand" rel="Chapter" href="Rand.html">
<link title="Oper" rel="Chapter" href="Oper.html">
<link title="Path" rel="Chapter" href="Path.html">
<link title="Traverse" rel="Chapter" href="Traverse.html">
<link title="Coloring" rel="Chapter" href="Coloring.html">
<link title="Topological" rel="Chapter" href="Topological.html">
<link title="Components" rel="Chapter" href="Components.html">
<link title="Kruskal" rel="Chapter" href="Kruskal.html">
<link title="Flow" rel="Chapter" href="Flow.html">
<link title="Graphviz" rel="Chapter" href="Graphviz.html">
<link title="Gml" rel="Chapter" href="Gml.html">
<link title="Dot" rel="Chapter" href="Dot.html">
<link title="Pack" rel="Chapter" href="Pack.html">
<link title="Gmap" rel="Chapter" href="Gmap.html">
<link title="Minsep" rel="Chapter" href="Minsep.html">
<link title="Cliquetree" rel="Chapter" href="Cliquetree.html">
<link title="Mcs_m" rel="Chapter" href="Mcs_m.html">
<link title="Md" rel="Chapter" href="Md.html">
<link title="Strat" rel="Chapter" href="Strat.html"><link title="Signatures for graph implementations" rel="Section" href="#2_Signaturesforgraphimplementations">
<link title="Signature for ordered and hashable types" rel="Section" href="#2_Signaturefororderedandhashabletypes">
<title>Sig</title>
</head>
<body>
<div class="navbar">&nbsp;<a href="index.html">Up</a>
&nbsp;<a href="Sig_pack.html">Next</a>
</div>
<center><h1>Module <a href="type_Sig.html">Sig</a></h1></center>
<br>
<pre><span class="keyword">module</span> Sig: <code class="code">sig</code> <a href="Sig.html">..</a> <code class="code">end</code></pre><b>Signatures for graph implementations.</b><br>
<hr width="100%">
<br>
<a name="2_Signaturesforgraphimplementations"></a>
<h2>Signatures for graph implementations</h2><br>
<pre><span class="keyword">module type</span> <a href="Sig.VERTEX.html">VERTEX</a> = <code class="code">sig</code> <a href="Sig.VERTEX.html">..</a> <code class="code">end</code></pre><div class="info">
Signature for vertices.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.EDGE.html">EDGE</a> = <code class="code">sig</code> <a href="Sig.EDGE.html">..</a> <code class="code">end</code></pre><div class="info">
Signature for edges.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.G.html">G</a> = <code class="code">sig</code> <a href="Sig.G.html">..</a> <code class="code">end</code></pre><div class="info">
Common signature for all graphs.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.P.html">P</a> = <code class="code">sig</code> <a href="Sig.P.html">..</a> <code class="code">end</code></pre><div class="info">
Signature for persistent (i.e.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.I.html">I</a> = <code class="code">sig</code> <a href="Sig.I.html">..</a> <code class="code">end</code></pre><div class="info">
Signature for imperative (i.e.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.MARK.html">MARK</a> = <code class="code">sig</code> <a href="Sig.MARK.html">..</a> <code class="code">end</code></pre><div class="info">
Signature for marks on vertices.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.IM.html">IM</a> = <code class="code">sig</code> <a href="Sig.IM.html">..</a> <code class="code">end</code></pre><div class="info">
Signature for imperative graphs with marks on vertices.
</div>
<br>
<a name="2_Signaturefororderedandhashabletypes"></a>
<h2>Signature for ordered and hashable types</h2><br>
<pre><span class="keyword">module type</span> <a href="Sig.ANY_TYPE.html">ANY_TYPE</a> = <code class="code">sig</code> <a href="Sig.ANY_TYPE.html">..</a> <code class="code">end</code></pre><div class="info">
Signature with only an abstract type.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.ORDERED_TYPE.html">ORDERED_TYPE</a> = <code class="code">sig</code> <a href="Sig.ORDERED_TYPE.html">..</a> <code class="code">end</code></pre><div class="info">
Signature equivalent to <code class="code">Set.OrderedType</code>.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.ORDERED_TYPE_DFT.html">ORDERED_TYPE_DFT</a> = <code class="code">sig</code> <a href="Sig.ORDERED_TYPE_DFT.html">..</a> <code class="code">end</code></pre><div class="info">
Signature equivalent to <code class="code">Set.OrderedType</code> with a default value.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.HASHABLE.html">HASHABLE</a> = <code class="code">sig</code> <a href="Sig.HASHABLE.html">..</a> <code class="code">end</code></pre><div class="info">
Signature equivalent to <code class="code">Hashtbl.HashedType</code>.
</div>
<pre><span class="keyword">module type</span> <a href="Sig.COMPARABLE.html">COMPARABLE</a> = <code class="code">sig</code> <a href="Sig.COMPARABLE.html">..</a> <code class="code">end</code></pre><div class="info">
Signature merging <a href="Sig.ORDERED_TYPE.html"><code class="code">Sig.ORDERED_TYPE</code></a> and <a href="Sig.HASHABLE.html"><code class="code">Sig.HASHABLE</code></a>.
</div>
</body></html>