mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 11:15:31 -05:00
rename CCLeftistheap to CCHeap, for it is a simpler name
This commit is contained in:
parent
cac3500177
commit
9e2c8ec392
5 changed files with 3 additions and 3 deletions
2
_oasis
2
_oasis
|
|
@ -40,7 +40,7 @@ Library "containers"
|
||||||
Path: core
|
Path: core
|
||||||
Modules: CCVector, CCDeque, CCGen, CCSequence, CCFQueue, CCMultiMap,
|
Modules: CCVector, CCDeque, CCGen, CCSequence, CCFQueue, CCMultiMap,
|
||||||
CCMultiSet, CCBV, CCPrint, CCPersistentHashtbl, CCError,
|
CCMultiSet, CCBV, CCPrint, CCPersistentHashtbl, CCError,
|
||||||
CCLeftistheap, CCList, CCOpt, CCPair, CCFun, CCHash,
|
CCHeap, CCList, CCOpt, CCPair, CCFun, CCHash,
|
||||||
CCKList, CCInt, CCBool, CCArray, CCBatch, CCOrd,
|
CCKList, CCInt, CCBool, CCArray, CCBatch, CCOrd,
|
||||||
CCRandom, CCLinq
|
CCRandom, CCLinq
|
||||||
FindlibName: containers
|
FindlibName: containers
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ let suite =
|
||||||
Test_PiCalculus.suite;
|
Test_PiCalculus.suite;
|
||||||
Test_splayMap.suite;
|
Test_splayMap.suite;
|
||||||
Test_bij.suite;
|
Test_bij.suite;
|
||||||
Test_leftistheap.suite;
|
Test_CCHeap.suite;
|
||||||
Test_cc.suite;
|
Test_cc.suite;
|
||||||
Test_puf.suite;
|
Test_puf.suite;
|
||||||
Test_vector.suite;
|
Test_vector.suite;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ open OUnit
|
||||||
|
|
||||||
module Sequence = CCSequence
|
module Sequence = CCSequence
|
||||||
|
|
||||||
module H = CCLeftistheap.Make(struct type t = int let leq x y =x<=y end)
|
module H = CCHeap.Make(struct type t = int let leq x y =x<=y end)
|
||||||
|
|
||||||
let empty = H.empty
|
let empty = H.empty
|
||||||
|
|
||||||
Loading…
Add table
Reference in a new issue