update union-find library (part 2: adjust module names)
This commit is contained in:
parent
5e444dd278
commit
dd9a4dfb47
@ -7,7 +7,7 @@
|
|||||||
ast_simplified
|
ast_simplified
|
||||||
ast_typed
|
ast_typed
|
||||||
operators
|
operators
|
||||||
union_find
|
partition
|
||||||
)
|
)
|
||||||
(preprocess
|
(preprocess
|
||||||
(pps ppx_let)
|
(pps ppx_let)
|
||||||
|
@ -355,7 +355,7 @@ struct
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
module UF = Union_find.Partition0.Make(TypeVariable)
|
module UF = UnionFind.Partition0.Make(TypeVariable)
|
||||||
|
|
||||||
type unionfind = UF.t
|
type unionfind = UF.t
|
||||||
|
|
||||||
|
2
vendors/UnionFind/dune
vendored
2
vendors/UnionFind/dune
vendored
@ -2,7 +2,7 @@
|
|||||||
(name UnionFind)
|
(name UnionFind)
|
||||||
(public_name partition)
|
(public_name partition)
|
||||||
(wrapped false)
|
(wrapped false)
|
||||||
(modules Partition0 Partition1 Partition2 Partition3 Partition)
|
(modules Partition0 Partition1 Partition2 Partition3 Partition UnionFind)
|
||||||
(modules_without_implementation Partition))
|
(modules_without_implementation Partition))
|
||||||
|
|
||||||
(test
|
(test
|
||||||
|
2
vendors/UnionFind/unionFind.ml
vendored
Normal file
2
vendors/UnionFind/unionFind.ml
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
module Partition = Partition
|
||||||
|
module Partition0 = Partition0
|
Loading…
Reference in New Issue
Block a user