@ -102,6 +102,7 @@ public class PrismSettings implements Observer
public static final String PRISM_PTA_METHOD = "prism.ptaMethod" ;
public static final String PRISM_TRANSIENT_METHOD = "prism.transientMethod" ;
public static final String PRISM_AR_OPTIONS = "prism.arOptions" ;
public static final String PRISM_PATH_VIA_AUTOMATA = "prism.pathViaAutomata" ;
public static final String PRISM_EXPORT_ADV = "prism.exportAdv" ;
public static final String PRISM_EXPORT_ADV_FILENAME = "prism.exportAdvFilename" ;
@ -260,6 +261,8 @@ public class PrismSettings implements Observer
"Parameters for symmetry reduction (format: \"i j\" where i and j are the number of modules before and after the symmetric ones; empty string means symmetry reduction disabled)." } ,
{ STRING_TYPE , PRISM_AR_OPTIONS , "Abstraction refinement options" , "3.3" , "" , "" ,
"Various options passed to the asbtraction-refinement engine (e.g. for PTA model checking)." } ,
{ BOOLEAN_TYPE , PRISM_PATH_VIA_AUTOMATA , "All path formulas via automata" , "4.2.1" , new Boolean ( false ) , "" ,
"Handle all path formulas via automata constructions." } ,
/ / MULTI - OBJECTIVE MODEL CHECKING OPTIONS :
{ INTEGER_TYPE , PRISM_MULTI_MAX_POINTS , "Max. multi-objective corner points" , "4.0.3" , new Integer ( 50 ) , "0," ,
"Maximum number of corner points to explore if (value iteration based) multi-objective model checking does not converge." } ,
@ -1073,6 +1076,10 @@ public class PrismSettings implements Observer
throw new PrismException ( "No parameter specified for -" + sw + " switch" ) ;
}
}
/ / Handle all path formulas via automata constructions
else if ( sw . equals ( "pathviaautomata" ) ) {
set ( PRISM_PATH_VIA_AUTOMATA , true ) ;
}
/ / MULTI - OBJECTIVE MODEL CHECKING OPTIONS :
@ -1505,6 +1512,7 @@ public class PrismSettings implements Observer
mainLog . println ( "-sccmethod <name> .............. Specify (symbolic) SCC computation method (xiebeerel, lockstep, sccfind)" ) ;
mainLog . println ( "-symm <string> ................. Symmetry reduction options string" ) ;
mainLog . println ( "-aroptions <string> ............ Abstraction-refinement engine options string" ) ;
mainLog . println ( "-pathviaautomata ............... Handle all path formulas via automata constructions" ) ;
mainLog . println ( "-exportadv <file> .............. Export an adversary from MDP model checking (as a DTMC)" ) ;
mainLog . println ( "-exportadvmdp <file> ........... Export an adversary from MDP model checking (as an MDP)" ) ;
mainLog . println ( ) ;