~ubuntu-branches/ubuntu/quantal/menhir/quantal

« back to all changes in this revision

Viewing changes to src/tarjan.mli

  • Committer: Package Import Robot
  • Author(s): Mehdi Dogguy
  • Date: 2012-01-23 20:50:25 UTC
  • mfrom: (1.1.8) (2.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120123205025-nd325ikf9gmqe1v7
Tags: 20120123.dfsg-1
* New upstream release
  - fixes http://caml.inria.fr/mantis/view.php?id=5462

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
  val scc: node -> node list
53
53
 
 
54
  (* [iter action] allows iterating over all strongly connected
 
55
     components. For each component, the [action] function is applied
 
56
     to the representative element and to a (non-empty) list of all
 
57
     elements. *)
 
58
 
 
59
  val iter: (node -> node list -> unit) -> unit
 
60
 
54
61
end
55
62