129130131132133134135136137138139
if (logPoints >= 0.5 * logCurrentPoints && logPoints <= 0.75 * logCurrentPoints) { reg.add(logPoints, Math.log(entry.variation())); } } errorSlope = reg.slope(); errorStart = reg.yIntercept(); } } static private class LogEntry {
148149150151152153154155156157158
reg.add(Math.log(entry.points), Math.log(entry.variation())); } } } errorSlope = reg.slope(); errorStart = reg.yIntercept(); } } }