From 7eb19c47c07c5187ada0a79db7addde1b5f62572 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Fri, 30 Sep 2016 20:27:26 +0200 Subject: Rewrite UU matrix to be K*K*(K-1) instead of n*K*(K-1) significant memory reduction by turning the 3D UU matrix into a 2D block matrix, with significantly less dimensions --- include/gensvm_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/gensvm_base.h') diff --git a/include/gensvm_base.h b/include/gensvm_base.h index 390a9b6..efeaa4d 100644 --- a/include/gensvm_base.h +++ b/include/gensvm_base.h @@ -82,7 +82,7 @@ struct GenModel { double *U; ///< simplex matrix double *UU; - ///< 3D simplex difference matrix + ///< simplex difference matrix double *Q; ///< error matrix double *H; -- cgit v1.2.3