update union-find library (part 2: adjust module names)

This commit is contained in:
Suzanne Dupéron 2020-01-06 19:00:05 +01:00 committed by Christian Rinderknecht
parent 5e444dd278
commit dd9a4dfb47
4 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@
ast_simplified
ast_typed
operators
union_find
partition
)
(preprocess
(pps ppx_let)

View File

@ -355,7 +355,7 @@ struct
end
module UF = Union_find.Partition0.Make(TypeVariable)
module UF = UnionFind.Partition0.Make(TypeVariable)
type unionfind = UF.t

View File

@ -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
View File

@ -0,0 +1,2 @@
module Partition = Partition
module Partition0 = Partition0