~ubuntu-branches/ubuntu/maverick/ocamlgraph/maverick

« back to all changes in this revision

Viewing changes to src/imperative.mli

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy, Mehdi Dogguy, Sylvain Le Gall
  • Date: 2009-07-06 20:50:04 UTC
  • mfrom: (1.1.7 upstream) (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090706205004-3qokam6adrbeeqqq
Tags: 1.1-1
[ Mehdi Dogguy ]
* New Upstream Version
* Update some build-dependencies versions
* Upgrade Standards-Version to 3.8.2, no changes needed.
* Update patch 01_makefile

[ Sylvain Le Gall ]
* Clean and restore files to come back to pristine-tar state after
  clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
  (** Imperative Unlabeled Graphs. *)
48
48
  module Concrete (V: COMPARABLE) : 
49
49
    Sig.I with type V.t = V.t and type V.label = V.t and type E.t = V.t * V.t
 
50
          and type E.label = unit
50
51
 
51
52
  (** Abstract Imperative Unlabeled Graphs. *)
52
53
  module Abstract(V: ANY_TYPE) : 
71
72
      constant time). *)
72
73
  module ConcreteBidirectional (V: COMPARABLE) : 
73
74
    Sig.I with type V.t = V.t and type V.label = V.t and type E.t = V.t * V.t 
 
75
          and type E.label = unit
74
76
end
75
77
 
76
78
(** Imperative Undirected Graphs. *)