summaryrefslogtreecommitdiff
path: root/vest/error_surface.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-01-27 14:49:08 -0500
committerChris Dyer <cdyer@cs.cmu.edu>2012-01-27 14:49:08 -0500
commit89b662b51373f0f466d62a65d3f0a164d1d31b1c (patch)
treeefff9d60e5c128c054f848fa802e9f077cad54b1 /vest/error_surface.h
parent3d17bf9ae1ba67cd091794839d4d5f4c393a0e2c (diff)
rename vest to dpmert (dynamic programming mert), rename variables and types to correspond to standard geometric concepts
Diffstat (limited to 'vest/error_surface.h')
-rw-r--r--vest/error_surface.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/vest/error_surface.h b/vest/error_surface.h
deleted file mode 100644
index bb65847b..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 "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