File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Src/PRuntimes/PExplicitRuntime/src/main/java/pexplicit/commandline Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,6 @@ public static PExplicitConfig ParseCommandlineArgs(String[] args) {
359
359
case "r" :
360
360
case "replay" :
361
361
config .setReplayFile (option .getValue ());
362
- config .setSearchStrategyMode (SearchStrategyMode .Replay );
363
362
break ;
364
363
// invisible expert options
365
364
case "state-caching" :
@@ -449,7 +448,8 @@ public static PExplicitConfig ParseCommandlineArgs(String[] args) {
449
448
config .setMaxSchedulesPerTask (0 );
450
449
}
451
450
452
- if (config .getSearchStrategyMode () == SearchStrategyMode .Replay ) {
451
+ if (config .getReplayFile () != "" ) {
452
+ config .setSearchStrategyMode (SearchStrategyMode .Replay );
453
453
if (config .getVerbosity () == 0 ) {
454
454
config .setVerbosity (1 );
455
455
}
You can’t perform that action at this time.
0 commit comments