()
| 42 | |
| 43 | // sample standard deviation of percolation threshold |
| 44 | public double stddev() { |
| 45 | return thresholds.length == 1 ? Double.NaN : StdStats.stddev(thresholds); |
| 46 | } |
| 47 | |
| 48 | // low endpoint of 95% confidence interval |
| 49 | public double confidenceLo() { |
no outgoing calls
no test coverage detected