From b99a2c37301d350d5c069eb09de5ab4f4a673173 Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Tue, 24 Feb 2015 14:01:40 +0100 Subject: [PATCH] TP4 Tests auto MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Originellement fait pendant la séance --- S2/TP4/tp4.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/S2/TP4/tp4.py b/S2/TP4/tp4.py index c17fa42..4004711 100644 --- a/S2/TP4/tp4.py +++ b/S2/TP4/tp4.py @@ -143,4 +143,13 @@ def mesure(methode, l, elements): methode(l, 0, t, e) fin = time() print("\rLa méthode %s a pris %f secondes pour trouver %d éléments, soit %f secondes par élément"\ - % (methode, fin - debut, len(elements), (fin - debut)/len(elements))) \ No newline at end of file + % (methode, fin - debut, len(elements), (fin - debut)/len(elements))) + +if __name__ == '__main__': + import sys + if len(sys.argv) == 1: + print("\nTest avec 500 éléments pris exclusivement de LEXIQUE") + exclu = creerListeRecherche(LEXIQUE, 500, 0) + mesure(seq, LEXIQUE, exclu) + mesure(seqTrie, LEXIQUE_TRIE, exclu) + mesure(dicho, LEXIQUE_TRIE, exclu)