Hi,
I encounter an assertion error on my thesis while trying to write a line to a file. The related code is pasted below. The funny thing is that this code runs maybe 5000 times and i get the error at 5001 th time. Thank you very much for any help.
Note: I checked if the paramters that are to be written are NULL, but they are not.
outp = fopen("Results_lp.csv","w"); // All results will be written to Results.csv file
if(noofstations==1)
{
fprintf(outp,"Problem;Instance;Number of Stations;Cycle Time;Objective Function Value;CPU Time;Number of Tasks\n");
}
fprintf(outp,"%d; %d; %d; %d; %f; %.2f; %d;",problem, instance,noofstations,CT,objval,cpufix,N);