//Main.cpp #include "stdio.h" #include "iostream.h" #include "math.h" #include "string.h" #include "stdlib.h" #include "assert.h" #include "SetDef.h" #include "rankedSetDef.h" #include "subsetHolder.h" #include "Accumulated_Tallied_Variables.h" #include "Events.h" #include "JobShop.h" FILE * fp; FILE * fpOut; time_keeper Timer; void main() { fp = fopen("JobShopInput.txt", "r"); fpOut = fopen("JobShopOutput.txt", "w"); ReadInputData(); Timer.Simulate(); fclose(fp); fclose(fpOut); _exit(0); }