Browse Source

Temporary compile fix.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@5612 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 14 years ago
parent
commit
271f6af317
  1. 2
      prism/src/prism/Prism.java

2
prism/src/prism/Prism.java

@ -2628,7 +2628,7 @@ public class Prism implements PrismSettingsListener
DTMCModelChecker mcDTMC = new DTMCModelChecker(); DTMCModelChecker mcDTMC = new DTMCModelChecker();
mcDTMC.setLog(mainLog); mcDTMC.setLog(mainLog);
mcDTMC.setSettings(settings); mcDTMC.setSettings(settings);
probsExpl = mcDTMC.doSteadyState((DTMC) currentModelExpl, (File) null);
probsExpl = mcDTMC.doSteadyState((DTMC) currentModelExpl, (double[]) null);
//TODO: probsExpl = mcDTMC.doSteadyState((DTMC) currentModelExpl, fileIn); //TODO: probsExpl = mcDTMC.doSteadyState((DTMC) currentModelExpl, fileIn);
} else if (currentModelType == ModelType.CTMC) { } else if (currentModelType == ModelType.CTMC) {
throw new PrismException("Not implemented yet"); throw new PrismException("Not implemented yet");

Loading…
Cancel
Save