aboutsummaryrefslogtreecommitdiff
path: root/include/msvmmaj.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/msvmmaj.h')
-rw-r--r--include/msvmmaj.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/msvmmaj.h b/include/msvmmaj.h
index 4e00654..ec3da6f 100644
--- a/include/msvmmaj.h
+++ b/include/msvmmaj.h
@@ -41,12 +41,9 @@
* @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
*
* @TODO
* change R to int, it's a binary matrix
- *
*/
struct MajModel {
int weight_idx;
@@ -71,7 +68,6 @@ struct MajModel {
char *data_file;
KernelType kerneltype;
double *kernelparam;
- bool use_cholesky;
};
/**
@@ -84,7 +80,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 {
@@ -95,7 +90,6 @@ struct MajData {
double *Z;
KernelType kerneltype;
double *kernelparam;
- bool use_cholesky;
};
#endif