Test des fonctionnalites de base
	Insertion de 10 valeurs
Longint dictionary  [10]
	5:	5
	2:	2
	7:	7
	1:	1
	0:	0
	3:	3
	8:	8
	4:	4
	6:	6
	9:	9
	...
	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: -1
Removed: 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	LongintDictionary change size	0.153191
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	LongintDictionary access	0.916553
SYS MEMORY	Used memory	100000	6606986	6606986

Test de performance de comptage
Nombre max d'elements (1 to 10000000) [1000000]:
Nombre d'iterations (1 to 100000000) [10000000]:
	Total = 10000000
SYS TIME	LongintDictionary counts	3.9873
SYS MEMORY	Used memory	999962	61366311	61366311	92787648

Test de performance de comptage via un dictionnaire de LongintObject
	Total = 10000000
SYS TIME	LongintDictionary counts	4.16964
SYS MEMORY	Used memory	999959	61366191	77365535	116901952
