|
|
@ -26,6 +26,8 @@ |
|
|
|
|
|
|
|
|
package userinterface.simulator; |
|
|
package userinterface.simulator; |
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.SwingUtilities; |
|
|
|
|
|
|
|
|
import prism.PrismException; |
|
|
import prism.PrismException; |
|
|
import simulator.GenerateSimulationPath; |
|
|
import simulator.GenerateSimulationPath; |
|
|
import simulator.SimulatorEngine; |
|
|
import simulator.SimulatorEngine; |
|
|
@ -51,6 +53,10 @@ public class SimPathPlotThread extends GUIComputationThread |
|
|
this.graphModel = graphModel; |
|
|
this.graphModel = graphModel; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void run() |
|
|
|
|
|
{ |
|
|
|
|
|
SwingUtilities.invokeLater(new Runnable() |
|
|
|
|
|
{ |
|
|
public void run() |
|
|
public void run() |
|
|
{ |
|
|
{ |
|
|
try { |
|
|
try { |
|
|
@ -65,4 +71,6 @@ public class SimPathPlotThread extends GUIComputationThread |
|
|
error(e.getMessage()); |
|
|
error(e.getMessage()); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
}); |
|
|
|
|
|
} |
|
|
} |
|
|
} |