Bugfix for cached quals
This commit is contained in:
parent
03aa04e37c
commit
048202d18e
|
|
@ -17,7 +17,7 @@ public class QualityUtils {
|
||||||
|
|
||||||
private static double qualToErrorProbCache[] = new double[256];
|
private static double qualToErrorProbCache[] = new double[256];
|
||||||
static {
|
static {
|
||||||
for (byte i = 0; i < 256; i++) qualToErrorProbCache[i] = qualToErrorProbRaw(i);
|
for (int i = 0; i < 256; i++) qualToErrorProbCache[i] = qualToErrorProbRaw((byte)i);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue