From fbb5528a6327cfe9abea34b8bc4188f9166ee4e9 Mon Sep 17 00:00:00 2001 From: armatthews Date: Sun, 25 May 2014 21:26:59 -0400 Subject: Make sure SufficientStats constructor gets called --- python/cdec/mteval.pxi | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python') diff --git a/python/cdec/mteval.pxi b/python/cdec/mteval.pxi index 436a1e01..777ff55a 100644 --- a/python/cdec/mteval.pxi +++ b/python/cdec/mteval.pxi @@ -27,6 +27,9 @@ cdef class SufficientStats: cdef mteval.SufficientStats* stats cdef mteval.EvaluationMetric* metric + def __cinit__(self): + self.stats = new mteval.SufficientStats() + def __dealloc__(self): del self.stats -- cgit v1.2.3