diff options
author | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-19 22:51:33 +0000 |
---|---|---|
committer | graehl <graehl@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-07-19 22:51:33 +0000 |
commit | a2e4142d6a737bff040c3f2a583da6e8244db01a (patch) | |
tree | dce70b212c143f3149c8280698ee5abce7fd6cda /vest/error_surface.h | |
parent | 1b606343b7368aa4c61d5088b22b8916486f0073 (diff) |
shared_ptr for scores. todo: intrusive.
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@327 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'vest/error_surface.h')
-rw-r--r-- | vest/error_surface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vest/error_surface.h b/vest/error_surface.h index a8734f54..ad728cfa 100644 --- a/vest/error_surface.h +++ b/vest/error_surface.h @@ -10,8 +10,8 @@ class Score; struct ErrorSegment { double x; - Score* delta; - ErrorSegment() : x(0), delta(NULL) {} + ScoreP delta; + ErrorSegment() : x(0), delta() {} }; class ErrorSurface : public std::vector<ErrorSegment> { |