]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/ocaml/contrib/ocamlbuild/solver.mli
update
[l4.git] / l4 / pkg / ocaml / contrib / ocamlbuild / solver.mli
1 (***********************************************************************)
2 (*                             ocamlbuild                              *)
3 (*                                                                     *)
4 (*  Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
5 (*                                                                     *)
6 (*  Copyright 2007 Institut National de Recherche en Informatique et   *)
7 (*  en Automatique.  All rights reserved.  This file is distributed    *)
8 (*  under the terms of the Q Public License version 1.0.               *)
9 (*                                                                     *)
10 (***********************************************************************)
11
12
13 (* Original author: Nicolas Pouillard *)
14 type backtrace = private
15   | Leaf of Pathname.t
16   | Choice of backtrace list
17   | Depth of Pathname.t * backtrace
18   | Target of string * backtrace
19 exception Failed of backtrace
20 exception Circular of Pathname.t * Pathname.t list
21
22 val solve : Pathname.t -> unit
23 val solve_target : string -> Pathname.t list -> Pathname.t