Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit 203fcb9e
Show latest version
2 files
+ 10
10
Preferences
Compare changes
Files
2
+ 5
5
@@ -28,7 +28,7 @@ void genTabAlea(long tabARemplir[], size_t tailleTab) {
}
}
void compter(int* i){
void compter(long* i){
*i += 1;
}
@@ -67,10 +67,10 @@ int longComparator ( const void * first, const void * second ) {
}
void affiche_infos(struct compteur cpt){
printf("nombre de comparaisons : %d\n", cpt.comparaison);
printf("nombre d'écritures : %d\n", cpt.ecriture);
printf("nombre de fusions : %d\n", cpt.fusion);
printf("nombre de partitions : %d\n", cpt.partition);
printf("nombre de comparaisons : %ld\n", cpt.comparaison);
printf("nombre d'écritures : %ld\n", cpt.ecriture);
printf("nombre de fusions : %ld\n", cpt.fusion);
printf("nombre de partitions : %ld\n", cpt.partition);
}
void calc_chrono(clock_t chronoDebut, clock_t chronoFin){