Skip to content

Commit

Permalink
reduce verbosity (printing automata?)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanntm committed May 14, 2024
1 parent 88922b8 commit 454ad22
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,8 @@ void checkLTLProperty(fr.lip6.move.gal.structural.Property propPN, TGBA tgba, Sp
return;

if (! noStutterTest) {
System.out.println("Running random walk in product with property : " + propPN.getName() + " automaton " + tgba);
System.out.println("Running random walk in product with property : " + propPN.getName());
if (DEBUG >= 2) { System.out.println(" automaton " + tgba); }
RandomProductWalker pw = new RandomProductWalker(spnForProp,tgba);
pw.runProduct(NBSTEPS, 10, false);
if (doneProps.containsKey(propPN.getName()))
Expand Down

0 comments on commit 454ad22

Please sign in to comment.