You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FILE*results_file=fopen(results_name,"a");//open result file (appending to end)
if(results_file==NULL){
printf("Failed to open results file %s\n",results_name);
return0;
}
fprintf(results_file,"%f,",time);//write result to file
fclose(results_file);
}
elseif(strcmp(argv[1],"Q")==0&&argc==5){
intn=atoi(argv[4]);
if(n<1) return-1;
// call run queries and pass in the bitmap compressed directory, the query_out.txt file path, and the number of threads (all provided as command line arguments)