summaryrefslogtreecommitdiff
path: root/dpmert/error_surface.h
diff options
context:
space:
mode:
authorAvneesh Saluja <asaluja@gmail.com>2013-03-28 18:28:16 -0700
committerAvneesh Saluja <asaluja@gmail.com>2013-03-28 18:28:16 -0700
commit3d8d656fa7911524e0e6885647173474524e0784 (patch)
tree81b1ee2fcb67980376d03f0aa48e42e53abff222 /dpmert/error_surface.h
parentbe7f57fdd484e063775d7abf083b9fa4c403b610 (diff)
parent96fedabebafe7a38a6d5928be8fff767e411d705 (diff)
fixed conflicts
Diffstat (limited to 'dpmert/error_surface.h')
-rw-r--r--dpmert/error_surface.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/dpmert/error_surface.h b/dpmert/error_surface.h
deleted file mode 100644
index bb65847b..00000000
--- a/dpmert/error_surface.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef _ERROR_SURFACE_H_
-#define _ERROR_SURFACE_H_
-
-#include <vector>
-#include <string>
-
-#include "ns.h"
-
-class Score;
-
-struct ErrorSegment {
- double x;
- SufficientStats delta;
- ErrorSegment() : x(0), delta() {}
-};
-
-class ErrorSurface : public std::vector<ErrorSegment> {
- public:
- ~ErrorSurface();
- void Serialize(std::string* out) const;
- void Deserialize(const std::string& in);
-};
-
-#endif