Browse Source

Removed System.out.println's

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@199 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Mark Kattenbelt 19 years ago
parent
commit
6684d121be
  1. 2
      prism/src/prism/PrismUtils.java

2
prism/src/prism/PrismUtils.java

@ -121,7 +121,6 @@ public class PrismUtils
String res = formatter.toString().trim();
System.out.print(res);
int trailingZeroEnd = res.lastIndexOf('e');
if (trailingZeroEnd == -1)
@ -136,7 +135,6 @@ public class PrismUtils
x++;
res = res.substring(0,x + 1) + res.substring(trailingZeroEnd, res.length());
System.out.println( "-> " + res);
//formatter.format("%.6f",d); //(just decimals)
//formatter.format("%1$.2e", d); // [the way to format scientific notation with 6 being the precision]

Loading…
Cancel
Save