fixed .odocl and minor stuff

This commit is contained in:
Simon Cruanes 2013-06-12 17:36:59 +02:00
parent 689908f9b9
commit b70c94377e
4 changed files with 14 additions and 2 deletions

View file

@ -18,3 +18,4 @@ Univ
Vector Vector
Bij Bij
PiCalculus PiCalculus
Bencode

View file

@ -1,11 +1,21 @@
Cache
Deque Deque
Future
Gen Gen
FHashtbl
FQueue
FlatHashtbl
Graph Graph
Hashset
Heap Heap
LazyGraph LazyGraph
PersistentHashtbl PersistentHashtbl
PHashtbl
Sequence Sequence
SkipList
SplayTree
SplayMap
Univ Univ
Vector
Bij Bij
PiCalculus PiCalculus
Bencode

View file

@ -33,7 +33,7 @@ module type S =
val create : ?max_load:float -> int -> 'a t val create : ?max_load:float -> int -> 'a t
(** Create a hashtable. [max_load] is (number of items / size of table). (** Create a hashtable. [max_load] is (number of items / size of table).
Must be in ]0, 1[ *) Must be in {v ]0, 1[ v} *)
val copy : 'a t -> 'a t val copy : 'a t -> 'a t

View file

@ -6,6 +6,7 @@ let suite =
"all_tests" >::: "all_tests" >:::
[ Test_pHashtbl.suite; [ Test_pHashtbl.suite;
Test_PersistentHashtbl.suite; Test_PersistentHashtbl.suite;
Test_bencode.suite;
Test_Behavior.suite; Test_Behavior.suite;
Test_PiCalculus.suite; Test_PiCalculus.suite;
Test_splayMap.suite; Test_splayMap.suite;