00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef INNERPRODUCT_H_
00011 #define INNERPRODUCT_H_
00012
00013 #include "WeightFunction.h"
00014
00019 class InnerProduct: public WeightFunction {
00020 public:
00021 InnerProduct();
00022 virtual ~InnerProduct();
00023
00024 double getWeight(double *x, double *y, int d);
00025 };
00026
00027 #endif