separate numerical operations into int and float folders, changing names of exposed functions from stdlib

This commit is contained in:
2021-12-18 20:20:30 +11:00
committed by aaron-jack-manning
parent 0956d7cc02
commit 99d1f15c9d
11 changed files with 48 additions and 16 deletions

View File

@@ -111,7 +111,7 @@ module RBTreeSet (M : SetSpecification) : RBTreeSet with type member = M.member
match set with
| Leaf -> 0
| Branch (_, _, left, right) ->
cardinality left + cardinality right + 1
Int.(cardinality left + cardinality right + 1)
end
(* Planned Functions: