aboutsummaryrefslogtreecommitdiff
path: root/src/gensvm_update.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gensvm_update.c')
-rw-r--r--src/gensvm_update.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gensvm_update.c b/src/gensvm_update.c
index d74965c..3bf7549 100644
--- a/src/gensvm_update.c
+++ b/src/gensvm_update.c
@@ -535,6 +535,19 @@ void gensvm_get_ZAZ_ZB_sparse(struct GenModel *model, struct GenData *data,
}
+/**
+ * @brief Wrapper around calculation of Z'*A*Z and Z'*B for sparse and dense
+ *
+ * @details
+ * This is a wrapper around gensvm_get_ZAZ_ZB_dense() and
+ * gensvm_get_ZAZ_ZB_sparse(). See the documentation of those functions for
+ * more info.
+ *
+ * @param[in] model a GenModel struct
+ * @param[in] data a GenData struct
+ * @param[in] work a GenWork struct
+ *
+ */
void gensvm_get_ZAZ_ZB(struct GenModel *model, struct GenData *data,
struct GenWork *work)
{