Skip to content
Snippets Groups Projects
Commit 42cd310b authored by Valentin Perrelle's avatar Valentin Perrelle Committed by David Bühler
Browse files

[Eva] multidim: remove unused functor parameter

parent e7faf31f
No related branches found
No related tags found
No related merge requests found
...@@ -204,7 +204,7 @@ sig ...@@ -204,7 +204,7 @@ sig
val map : (submemory -> submemory) -> t -> t val map : (submemory -> submemory) -> t -> t
end end
module Disjunction (Config : Config) (M : ProtoMemory) module Disjunction (M : ProtoMemory)
(S : Structure with type submemory = M.t) = (S : Structure with type submemory = M.t) =
struct struct
module Valuation = module Valuation =
......
...@@ -76,6 +76,5 @@ sig ...@@ -76,6 +76,5 @@ sig
val map : (submemory -> submemory) -> t -> t val map : (submemory -> submemory) -> t -> t
end end
module Disjunction (Config : Config) (M : ProtoMemory) module Disjunction (M : ProtoMemory) (S : Structure with type submemory = M.t) :
(S : Structure with type submemory = M.t) :
Disjunction with type submemory = M.t and type structure = S.t Disjunction with type submemory = M.t and type structure = S.t
...@@ -527,7 +527,7 @@ struct ...@@ -527,7 +527,7 @@ struct
and A : Segmentation.Segmentation with type submemory = ProtoMemory.t = and A : Segmentation.Segmentation with type submemory = ProtoMemory.t =
Segmentation.Make (Config) (ProtoMemory) Segmentation.Make (Config) (ProtoMemory)
and D : Abstract_structure.Disjunction with type submemory = ProtoMemory.t and type structure = S.t = and D : Abstract_structure.Disjunction with type submemory = ProtoMemory.t and type structure = S.t =
Abstract_structure.Disjunction (Config) (ProtoMemory) (S) Abstract_structure.Disjunction (ProtoMemory) (S)
include ProtoMemory include ProtoMemory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment