SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
StringDistance.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2006-2009 Christian Gehl
8  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _STRINGDISTANCE_H___
12 #define _STRINGDISTANCE_H___
13 
14 #include <shogun/lib/config.h>
15 
18 
19 namespace shogun
20 {
22 template <class ST> class CStringDistance : public CDistance
23 {
24  public:
27 
34  /* when training data is supplied as both l and r do_init
35  * should be true
36  */
37  virtual bool init(CFeatures* l, CFeatures* r)
38  {
39  CDistance::init(l,r);
40 
45  return true;
46  }
47 
53 
59 
65  virtual const char* get_name() const {
66  return "StringDistance"; }
67 
72  virtual void cleanup()=0;
73 
80  virtual EDistanceType get_distance_type()=0;
81 };
82 
88 
94 
100 
106 
112 
118 
124 
125 } // namespace shogun
126 #endif
127 
Class Distance, a base class for all the distances used in the Shogun toolbox.
Definition: Distance.h:87
virtual EDistanceType get_distance_type()=0
virtual const char * get_name() const
EFeatureClass
shogun feature class
Definition: FeatureTypes.h:38
#define ASSERT(x)
Definition: SGIO.h:201
EDistanceType
Definition: Distance.h:32
virtual EFeatureClass get_feature_class() const =0
virtual EFeatureClass get_feature_class()
virtual EFeatureType get_feature_type()
EFeatureType
shogun feature type
Definition: FeatureTypes.h:19
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
The class Features is the base class of all feature objects.
Definition: Features.h:68
virtual bool init(CFeatures *l, CFeatures *r)
virtual void cleanup()=0
virtual EFeatureType get_feature_type() const =0
template class StringDistance

SHOGUN Machine Learning Toolbox - Documentation