Skip to content

Commit

Permalink
Take out sys outs causing test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
cogmission committed Oct 13, 2016
1 parent 80f762e commit f4eed8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/numenta/nupic/util/UniversalRandom.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,14 +210,14 @@ public int[][] binDistrib(int rows, int cols, double sparsity) {
public double nextDouble() {
int nd = nextInt(10000);
double retVal = new BigDecimal(nd * .0001d, MATH_CONTEXT).doubleValue();
System.out.println("nextDouble: " + retVal);
//System.out.println("nextDouble: " + retVal);
return retVal;
}

@Override
public int nextInt() {
int retVal = nextInt(Integer.MAX_VALUE);
System.out.println("nextIntNB: " + retVal);
//System.out.println("nextIntNB: " + retVal);
return retVal;
}

Expand All @@ -241,7 +241,7 @@ public int nextInt(int bound) {
;
*/
}
System.out.println("nextInt(" + bound + "): " + r);
//System.out.println("nextInt(" + bound + "): " + r);
return r;
}

Expand Down

0 comments on commit f4eed8d

Please sign in to comment.