From e6fdf10cffdae97c44ee5c8c16030c7a3fddff7d Mon Sep 17 00:00:00 2001 From: danielgeiszler Date: Sat, 6 Apr 2024 12:57:27 +0300 Subject: [PATCH] Remove print debugging statement --- .../ptmshepherd/iterativelocalization/LDAProcessor.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java b/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java index 82e17b9..9d428bf 100644 --- a/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java +++ b/src/edu/umich/andykong/ptmshepherd/iterativelocalization/LDAProcessor.java @@ -172,9 +172,6 @@ private List solveEigenProblem(RealMatrix sW, RealMatrix sB, int nEi // Perform eigen decomposition on the target matrix EigenDecomposition eigenDecomposition = new EigenDecomposition(targetMatrix); - for (int i = 0; i < eigenDecomposition.getRealEigenvalues().length; i++) - System.out.println(eigenDecomposition.getRealEigenvalue(i)); - // Sort eigenvectors by the magnitude of their corresponding eigenvalues in descending order List sortedIndices = IntStream.range(0, eigenDecomposition.getRealEigenvalues().length) .boxed()