Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(CofThy)!: rearrange CofThy.Param #5

Merged
merged 1 commit into from
Apr 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 14 additions & 22 deletions src/CofThy.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ open Bwd

module type Param =
sig
module Dim : sig
include Map.OrderedType
val dim0 : t
val dim1 : t
end
module Var : Map.OrderedType
type dim
type var
val dim0 : dim
val dim1 : dim
val compare_dim : dim -> dim -> int
val compare_var : var -> var -> int
end

module type S =
Expand Down Expand Up @@ -40,22 +40,14 @@ sig
end
end

module Make (P : Param) : S with type dim = P.Dim.t and type var = P.Var.t =
module Make (P : Param) : S with type dim = P.dim and type var = P.var =
struct
include P
type dim = Dim.t
type var = Var.t
type cof = (dim, var) Cof.t

module UF = DisjointSet.Make (Dim)
module VarSet = Set.Make (Var)
module B = Builder.Make
(struct
type dim = Dim.t
type var = Var.t
let dim0 = Dim.dim0
let dim1 = Dim.dim1
end)
module UF = DisjointSet.Make (struct type t = dim let compare = compare_dim end)
module VarSet = Set.Make (struct type t = var let compare = compare_var end)
module B = Builder.Make (P)

(** A presentation of an algebraic theory over the language of intervals and cofibrations. *)
type alg_thy' =
Expand All @@ -65,7 +57,7 @@ struct
true_vars : VarSet.t
}

type eq = Dim.t * Dim.t
type eq = dim * dim

(** A [branch] represents the meet of a bunch of atomic cofibrations. *)
type branch = VarSet.t * eq list
Expand Down Expand Up @@ -143,7 +135,7 @@ struct
match unsafe_test_and_assume_eq thy (x, y) with
| true, _ -> `True
| false, thy' ->
if test_eq thy' (Dim.dim0, Dim.dim1) then
if test_eq thy' (P.dim0, P.dim1) then
`False
else
`Indeterminate
Expand Down Expand Up @@ -173,7 +165,7 @@ struct
| false, thy' -> thy', Snoc (eqs, eq)
in
let thy', eqs = List.fold_left ~f:go ~init:(thy, Emp) eqs in
match test_eq thy' (Dim.dim0, Dim.dim1) with
match test_eq thy' (P.dim0, P.dim1) with
| true -> `Inconsistent
| false -> `Consistent (thy', BwdLabels.to_list eqs)

Expand Down Expand Up @@ -249,7 +241,7 @@ struct
{classes = UF.merge thy'1.classes thy'2.classes;
true_vars = VarSet.union thy'1.true_vars thy'2.true_vars}
in
match test_eq thy' (Dim.dim0, Dim.dim1) with
match test_eq thy' (P.dim0, P.dim1) with
| true -> `Inconsistent
| false -> `Consistent thy'

Expand Down
26 changes: 17 additions & 9 deletions src/CofThy.mli
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
(** Parameters of cofibration solvers. *)
module type Param =
sig
(** The interval algebra *)
module Dim : sig
include Map.OrderedType
val dim0 : t
val dim1 : t
end
(** The interval algebra. *)
type dim

(** The type of cofibration variables. *)
type var

(** The point 0 in the interval algebra. *)
val dim0 : dim

(** The point 1 in the interval algebra. *)
val dim1 : dim

(** Comparator for elements of the interval algebra. *)
val compare_dim : dim -> dim -> int

(** The cofibration variables *)
module Var : Map.OrderedType
(** Comparator for cofibration variables. *)
val compare_var : var -> var -> int
end

(** The signature of cofibration solvers. *)
Expand Down Expand Up @@ -84,4 +92,4 @@ sig
end

(** The cofibration solver. *)
module Make (P : Param) : S with type dim = P.Dim.t and type var = P.Var.t
module Make (P : Param) : S with type dim = P.dim and type var = P.var