package dose3

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file strongconflicts.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
(**************************************************************************************)
(*  Copyright (C) 2009 Pietro Abate <pietro.abate@pps.jussieu.fr>                     *)
(*  Copyright (C) 2009 Mancoosi Project                                               *)
(*                                                                                    *)
(*  This library is free software: you can redistribute it and/or modify              *)
(*  it under the terms of the GNU Lesser General Public License as                    *)
(*  published by the Free Software Foundation, either version 3 of the                *)
(*  License, or (at your option) any later version.  A special linking                *)
(*  exception to the GNU Lesser General Public License applies to this                *)
(*  library, see the COPYING file for more information.                               *)
(**************************************************************************************)

open Dose_common
open Defaultgraphs

include Util.Logging (struct
  let label = "dose_algo.strongconflicts"
end)

module ICG = Strongconflicts_int.CG

type cfl_type = Explicit | Conjunctive | Other of Diagnostic.reason list

module CflE = struct
  type t = Cudf.package * Cudf.package * cfl_type

  let compare = Stdlib.compare

  let default = (Cudf.default_package, Cudf.default_package, Other [])
end

module CG = Graph.Imperative.Graph.ConcreteLabeled (PackageGraph.PkgV) (CflE)

(* tempy. *)
let reason univ rl =
  let from_sat = CudfAdd.inttopkg univ in
  List.map
    (function
      | Diagnostic.DependencyInt (i, vl, il) ->
          Diagnostic.Dependency (from_sat i, vl, List.map from_sat il)
      | Diagnostic.MissingInt (i, vl) -> Diagnostic.Missing (from_sat i, vl)
      | Diagnostic.ConflictInt (i, j, vpkg) ->
          Diagnostic.Conflict (from_sat i, from_sat j, vpkg))
    rl

let cvt univ = function
  | Strongconflicts_int.Explicit -> Explicit
  | Strongconflicts_int.Conjunctive -> Conjunctive
  | Strongconflicts_int.Other l -> Other (reason univ l)

(** strongconflicts return the list of all strong conflicts in universe.

    invariant: the universe must contain only edos-installable packages : see
    Depsolver.trim.
*)

let strongconflicts universe =
  let g = CG.create () in
  let universe = Depsolver.trim universe in
  let ig = Strongconflicts_int.strongconflicts universe in
  let inttovar = CudfAdd.inttopkg universe in
  (* convert output graph *)
  ICG.iter_vertex (fun v -> CG.add_vertex g (inttovar v)) ig ;
  ICG.iter_edges_e
    (fun (x, (x', y', l), y) ->
      CG.add_edge_e
        g
        (inttovar x, (inttovar x', inttovar y', cvt universe l), inttovar y))
    ig ;
  g
OCaml

Innovation. Community. Security.