PROBI  1.0
 All Classes Functions
EuclideanSquaredMetric.hpp
1 #ifndef EUCLIDEANSQUAREDMETRIC_H
2 #define EUCLIDEANSQUAREDMETRIC_H
3 
4 #include "Point.hpp"
5 #include "Metric.hpp"
6 
10 class EuclideanSquaredMetric : public Metric<Point>
11 {
12 public:
13  virtual double distance(Point const & x, Point const & y) const;
14 };
15 
16 #endif