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_typed
|
||||
operators
|
||||
union_find
|
||||
partition
|
||||
)
|
||||
(preprocess
|
||||
(pps ppx_let)
|
||||
|
@ -355,7 +355,7 @@ struct
|
||||
|
||||
end
|
||||
|
||||
module UF = Union_find.Partition0.Make(TypeVariable)
|
||||
module UF = UnionFind.Partition0.Make(TypeVariable)
|
||||
|
||||
type unionfind = UF.t
|
||||
|
||||
|
2
vendors/UnionFind/dune
vendored
2
vendors/UnionFind/dune
vendored
@ -2,7 +2,7 @@
|
||||
(name UnionFind)
|
||||
(public_name partition)
|
||||
(wrapped false)
|
||||
(modules Partition0 Partition1 Partition2 Partition3 Partition)
|
||||
(modules Partition0 Partition1 Partition2 Partition3 Partition UnionFind)
|
||||
(modules_without_implementation Partition))
|
||||
|
||||
(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