pec.addEvent(event);
/*PEC event retrieval cycle*/
while((event = pec.getEvent())!=null){
try{//Simulate
newEventList = (LinkedList<ACOEvent>)event.processEvent();
}catch (FinishException finish){//If the Event processing throws a finish Exception
//System.out.println("Simulation finished: "+finish.getMessage());
return;//End of Simulation
}catch (InvalidGraphException invg){
System.out.println("Bad Graph Design Error: " + invg.getMessage());