aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/msvmmaj.h5
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