~ubuntu-branches/ubuntu/natty/ocamlgraph/natty

« back to all changes in this revision

Viewing changes to src/traverse.mli

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2010-05-15 15:10:43 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100515151043-dc0ukpzcwnle266b
Tags: 1.5-1
* New upstream release
  + Remove 0003-dgraph-handle-dotted-ellipse.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
(** Minimal graph signature for {!Dfs} and {!Bfs}.
25
25
    Sub-signature of {!Sig.G}. *)
26
26
module type G = sig
 
27
  val is_directed : bool
27
28
  type t
28
29
  module V : Sig.COMPARABLE
29
30
  val iter_vertex : (V.t -> unit) -> t -> unit