Browse Source

Remove some TODO comments.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@4601 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 14 years ago
parent
commit
63f338e2b5
  1. 7
      prism/src/prism/Prism.java

7
prism/src/prism/Prism.java

@ -1657,7 +1657,6 @@ public class Prism implements PrismSettingsListener
throw new PrismException("ExplicitFiles2MTBDD object never created");
currentModel = expf2mtbdd.buildModel();
} else {
// TODO: add using model.buildFromPrismExplicit(...);
throw new PrismException("Explicit import not yet supported for explicit engine");
}
break;
@ -1922,7 +1921,7 @@ public class Prism implements PrismSettingsListener
case Prism.EXPORT_MRMC:
case Prism.EXPORT_ROWS:
case Prism.EXPORT_DOT_STATES:
throw new PrismException("Export not yet supported"); // TODO
throw new PrismException("Export not yet supported");
}
}
@ -2546,7 +2545,7 @@ public class Prism implements PrismSettingsListener
mcDTMC.setSettings(settings);
probsExpl = mcDTMC.doSteadyState((DTMC) currentModelExpl, null);
} else if (currentModelType == ModelType.CTMC) {
throw new PrismException("Not implemented yet"); // TODO
throw new PrismException("Not implemented yet");
} else {
throw new PrismException("Steady-state probabilities only computed for DTMCs/CTMCs");
}
@ -2641,7 +2640,7 @@ public class Prism implements PrismSettingsListener
}
} else {
if (currentModelType == ModelType.DTMC) {
throw new PrismException("Not implemented yet"); // TODO
throw new PrismException("Not implemented yet");
} else if (currentModelType == ModelType.CTMC) {
CTMCModelChecker mcCTMC = new CTMCModelChecker();
mcCTMC.setLog(mainLog);

Loading…
Cancel
Save