diff options
Diffstat (limited to 'vest/error_surface.h')
-rw-r--r-- | vest/error_surface.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/vest/error_surface.h b/vest/error_surface.h deleted file mode 100644 index ad728cfa..00000000 --- a/vest/error_surface.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef _ERROR_SURFACE_H_ -#define _ERROR_SURFACE_H_ - -#include <vector> -#include <string> - -#include "scorer.h" - -class Score; - -struct ErrorSegment { - double x; - ScoreP delta; - ErrorSegment() : x(0), delta() {} -}; - -class ErrorSurface : public std::vector<ErrorSegment> { - public: - ~ErrorSurface(); - void Serialize(std::string* out) const; - void Deserialize(ScoreType type, const std::string& in); -}; - -#endif |