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
commit5b8253e0e1f1393a509fb9975ba8c1347af758ed (patch)
tree1790470b1d07a0b4973ebce19192e896566ea60b /dpmert/error_surface.h
parent2389a5a8a43dda87c355579838559515b0428421 (diff)
parentb203f8c5dc8cff1b9c9c2073832b248fcad0765a (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