static double posNegMatrixOfInts_quality(PosNegMatrix<Int> m) {
  if (m == null) ret 0;
  int total = m.pos+m.neg+m.falsePos+m.falseNeg;
  ret doubleRatio(m.pos+m.neg, total);
}