Test des fonctionnalites de base
	Insertion de 10 valeurs
Longint numeric key dictionary  [10]
	0:	0
	4:	4
	9:	9
	7:	7
	5:	5
	1:	1
	6:	6
	3:	3
	8:	8
	2:	2
	...
	Test d'existence
		Lookup ([8]): 8
		Lookup ([9]): 9
		Lookup ([10]): 0
	Loop of clean and decrement
		(10, 45)	[-1]		(9, 45) ->	(9, 36)
		(9, 36)	[-1]		(8, 36) ->	(8, 28)
		(8, 28)	[-1]		(7, 28) ->	(7, 21)
		(7, 21)	[-1]		(6, 21) ->	(6, 15)
		(6, 15)	[-1]		(5, 15) ->	(5, 10)
		(5, 10)	[-1]		(4, 10) ->	(4, 6)
		(4, 6)	[-1]		(3, 6) ->	(3, 3)
		(3, 3)	[-1]		(2, 3) ->	(2, 1)
		(2, 1)	[-1]		(1, 1) ->	(1, 0)
		(1, 0)	[-1]		(0, 0) ->	(0, 0)
Insertion puis supression d'un element temporaire a detruire
Inserted [18446744073709551615]: -1
Removed [18446744073709551615]: 0
Test de changement de taille dynamique
Nombre d'elements inseres) (1 to 100000) [1000]:
Nombre d'iterations (1 to 100000) [1000]:
  HashTableSize = 2729
SYS TIME	LongintNumericKeyDictionary change size	0.024012
Test de performance de base
Nombre maxi d'elements inseres (Random) (1 to 10000000) [100000]:
Nombre d'iterations (1 to 1000) [20]:
	Iteration 0	Size = 63191	Found = 63191
	Iteration 1	Size = 86377	Found = 86377
	Iteration 2	Size = 94988	Found = 94988
	Iteration 3	Size = 98217	Found = 98217
	Iteration 4	Size = 99369	Found = 99369
	Iteration 5	Size = 99774	Found = 99774
	Iteration 6	Size = 99913	Found = 99913
	Iteration 7	Size = 99968	Found = 99968
	Iteration 8	Size = 99992	Found = 99992
	Iteration 9	Size = 99997	Found = 99997
	Iteration 10	Size = 100000	Found = 100000
	Iteration 11	Size = 100000	Found = 100000
	Iteration 12	Size = 100000	Found = 100000
	Iteration 13	Size = 100000	Found = 100000
	Iteration 14	Size = 100000	Found = 100000
	Iteration 15	Size = 100000	Found = 100000
	Iteration 16	Size = 100000	Found = 100000
	Iteration 17	Size = 100000	Found = 100000
	Iteration 18	Size = 100000	Found = 100000
	Iteration 19	Size = 100000	Found = 100000
SYS TIME	LongintNumericKeyDictionary access	0.177419
SYS MEMORY	Used memory	100000	6118096	6118096

Test de performance de comptage
Nombre max d'elements (1 to 10000000) [1000000]:
Nombre d'iterations (1 to 100000000) [10000000]:
	Total = 10000000
SYS TIME	LongintNumericKeyDictionary counts	1.64938
SYS MEMORY	Used memory	999962	55477642	55477642	76536704

Test de performance de comptage via un dictionnaire de LongintObject
	Total = 10000000
SYS TIME	LongintNumericKeyDictionary counts	2.64298
SYS MEMORY	Used memory	999959	55477543	71476887	100651008
