/** Start the simulation right now.
*/
public static void startSimulation() {
Kernel k = Kernels.get();
if (k==null) throw new IllegalStateException();
k.launchDifferedExecutionAgents();
if (uiSingleton!=null) uiSingleton.setVisible(true);
}
/** Stop the simulation right now.
*/