Ejemplo n.º 1
0
int main(int argc, const char* argv[]) {
	cout << ":)" << endl;
	int maxN = atoi(argv[1]);
	int step = atoi(argv[2]);
	int cantTests = atoi(argv[3]);
	
	testear(maxN, step, cantTests);
    
	return 0;
}
Ejemplo n.º 2
0
int main(){
   inicializar_semilla();

   printf(" Se testean las diferentes funciones\n");
   testear();

   printf("\n\n Se miden diferentes tiempos de funciones\n\n");
   tiempos();

   return 0;
}