diff options
| author | Gertjan van den Burg <burg@ese.eur.nl> | 2014-03-13 13:59:28 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <burg@ese.eur.nl> | 2014-03-13 13:59:28 +0100 |
| commit | 5375b219c68ff35226bd3290e7c3d602af90d4bd (patch) | |
| tree | a7e2acc75a09e04b99083ea37057a80c91ea2283 /include | |
| parent | include training time in consistency repeats to determine optimal config (diff) | |
| download | gensvm-5375b219c68ff35226bd3290e7c3d602af90d4bd.tar.gz gensvm-5375b219c68ff35226bd3290e7c3d602af90d4bd.zip | |
remove all cholesky parts
Diffstat (limited to 'include')
| -rw-r--r-- | include/msvmmaj.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/msvmmaj.h b/include/msvmmaj.h index d67ad8b..b89b107 100644 --- a/include/msvmmaj.h +++ b/include/msvmmaj.h @@ -41,8 +41,6 @@ * @param *data_file pointer to the filename of the data * @param kerneltype kernel to be used in the model * @param kernelparam pointer to the vector of kernel parameters - * @param use_cholesky whether the Cholesky decomposition should be - * used * */ struct MajModel { @@ -68,7 +66,6 @@ struct MajModel { char *data_file; KernelType kerneltype; double *kernelparam; - bool use_cholesky; }; /** @@ -81,7 +78,6 @@ struct MajModel { * @param *Z pointer to augmented data matrix * @param kerneltype kerneltype used in MajData::Z * @param *kernelparam kernel parameters used in MajData::Z - * @param use_cholesky whether the Cholesky decomposition is used in MajData::Z * */ struct MajData { @@ -92,7 +88,6 @@ struct MajData { double *Z; KernelType kerneltype; double *kernelparam; - bool use_cholesky; }; #endif |
