155156157158159160161162163164
/** * @return Simulator used to run this Network (a LocalSimulator by default) */ public Simulator getSimulator() { if (mySimulator == null) { mySimulator = new LocalSimulator(); mySimulator.initialize(this); } return mySimulator; }