|
|
|
@ -195,24 +195,38 @@ public interface Model |
|
|
|
|
|
|
|
/** |
|
|
|
* Export to a dot file. |
|
|
|
* @param filename Name of file to export to |
|
|
|
*/ |
|
|
|
public void exportToDotFile(String filename) throws PrismException; |
|
|
|
|
|
|
|
/** |
|
|
|
* Export to a dot file, highlighting states in 'mark'. |
|
|
|
* @param filename Name of file to export to |
|
|
|
* @param mark States to highlight (ignored if null) |
|
|
|
*/ |
|
|
|
public void exportToDotFile(String filename, BitSet mark) throws PrismException; |
|
|
|
|
|
|
|
/** |
|
|
|
* Export to a dot file. |
|
|
|
* @param out PrismLog to export to |
|
|
|
*/ |
|
|
|
public void exportToDotFile(PrismLog out); |
|
|
|
|
|
|
|
/** |
|
|
|
* Export to a dot file, highlighting states in 'mark'. |
|
|
|
* @param out PrismLog to export to |
|
|
|
* @param mark States to highlight (ignored if null) |
|
|
|
*/ |
|
|
|
public void exportToDotFile(PrismLog out, BitSet mark); |
|
|
|
|
|
|
|
/** |
|
|
|
* Export to a dot file, highlighting states in 'mark'. |
|
|
|
* @param out PrismLog to export to |
|
|
|
* @param mark States to highlight (ignored if null) |
|
|
|
* @param showStates Show state info on nodes? |
|
|
|
*/ |
|
|
|
public void exportToDotFile(PrismLog out, BitSet mark, boolean showStates); |
|
|
|
|
|
|
|
/** |
|
|
|
* Export to a equivalent PRISM language model description. |
|
|
|
*/ |
|
|
|
|