Home | History | Annotate | Download | only in shaping

Lines Matching refs:passed

171 		self.passed = Stat ()
177 if test.passed:
178 self.passed.add (test)
183 return float (self.passed.count) / self.total.count
186 return (float (self.passed.count) / self.total.count) * \
209 passed = 0
214 passed += 1
217 total = passed + failed
218 print "%d out of %d tests passed. %d failed (%g%%)" % (passed, total, failed, 100. * failed / total)
243 print "zscore: %9f failed: %6d passed: %6d ngram: <%s>" % (stats.zscore (allstats), stats.failed.count, stats.passed.count, ','.join ("U+%04X" % u for u in ngram))
251 self.passed = True
259 self.passed = False