aboutsummaryrefslogtreecommitdiff
path: root/include/MSVMMaj.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/MSVMMaj.h')
-rw-r--r--include/MSVMMaj.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/include/MSVMMaj.h b/include/MSVMMaj.h
deleted file mode 100644
index de99f91..0000000
--- a/include/MSVMMaj.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef MSVMMAJ_H
-#define MSVMMAJ_H
-
-#include "globals.h"
-#include "types.h"
-
-/*
- Model structure
-*/
-struct MajModel {
- int weight_idx;
- long K;
- long n;
- long m;
- double epsilon;
- double p;
- double kappa;
- double lambda;
- double *W;
- double *t;
- double *V;
- double *Vbar;
- double *U;
- double *UU;
- double *Q;
- double *H;
- double *R;
- double *rho;
- double training_error;
- char *data_file;
- KernelType kerneltype;
- double *kernelparam;
-};
-
-/*
- Data structure
-*/
-struct MajData {
- long K;
- long n;
- long m;
- long *y;
- double *Z;
-};
-
-#endif