00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #if !defined _CLUSTER_H
00033 #define _CLUSTER_H
00034
00035 #include "general.h"
00036 #include <stdio.h>
00037 #include "vec.h"
00038 #include <string>
00039 #include <iostream>
00040
00041 using namespace TNT;
00042 using namespace std;
00043
00044 namespace CLUS
00045 {
00046
00047
00048
00049
00050
00051
00052 class Cluster
00053 {
00054 public:
00055 enum State {Final,Splited,Splitable,Dead};
00056
00057 protected:
00058 int inDim, outDim;
00059 const double* dataCache;
00060 double distanceInfer,distanceClus;
00061 double weight;
00062 double dimension;
00063 State state;
00064
00065 public:
00066 inline Cluster(int InDim=0, int OutDim=0):
00067 inDim(InDim), outDim(OutDim), dataCache(NULL), distanceInfer(0.0),
00068 distanceClus(0.0),weight(1.0), state(Splitable)
00069 {}
00070
00071 State GetState(void)
00072 {
00073 return state;
00074 }
00075
00076
00077 void RandomCluster(void)
00078 {}
00079
00080 void InitalizeOnPoint(const double*)
00081 {}
00082
00083 double InferDistance(const double* DataCache)
00084 {
00085 return 0.0;
00086 }
00087
00088 double ClusDistance(const double* DataCache)
00089 {
00090 return 0.0;
00091 }
00092
00093 inline double LastInferDistance(void)
00094 {
00095 return distanceInfer;
00096 }
00097
00098 inline double LastClusDistance(void)
00099 {
00100 return distanceClus;
00101 }
00102
00103
00104
00105
00106 void CorrectAppartGrade(double Coef)
00107 {}
00108
00109 void HCorrectAppartGrade(double Coef)
00110 {}
00111
00112
00113
00114
00115
00116
00117
00118 double AdjustPrototypes(void)
00119 {
00120 return 0.0;
00121 }
00122
00123 double HAdjustPrototypes(void)
00124 {
00125 return 0.0;
00126 }
00127
00128 void AdjustYwithYoverD(Vector<double>& Y)
00129 {}
00130
00131 void AdjustYwithYoverD(Vector<double>& Y, double)
00132 {}
00133
00134
00135
00136 double ComputeLastY(void)
00137 {
00138 return 0.0;
00139 }
00140
00141 static string TypeName(void)
00142 {
00143 return string("Cluster");
00144 }
00145
00146 void SaveToStream(ostream& )
00147 {}
00148
00149 void LoadFromStream(ostream& )
00150 {}
00151
00152 bool Split(Cluster& right, Cluster& save)
00153 {
00154 return false;
00155 }
00156
00157 bool SetOptionDbl(char* optName,double value)
00158 {
00159 if ( strcmp(optName,"weight") )
00160 {
00161 weight=value;
00162 return true;
00163 }
00164 return false;
00165 }
00166 };
00167
00168 }
00169
00170
00171 #endif