Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
disable unreliable tests that show up in #67
Browse files Browse the repository at this point in the history
  • Loading branch information
fommil committed Jun 14, 2015
1 parent 9465104 commit d09708e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/java/no/uib/cipr/matrix/SymmBandEigenvalueTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

package no.uib.cipr.matrix;

import org.junit.Ignore;

import no.uib.cipr.matrix.LowerSymmBandMatrix;
import no.uib.cipr.matrix.NotConvergedException;
import no.uib.cipr.matrix.SymmBandEVD;
Expand Down Expand Up @@ -75,6 +77,7 @@ public void testUpperFactor() throws NotConvergedException {
assertEquals(U, evd.getEigenvalues(), evd.getEigenvectors());
}

@Ignore
public void testLowerRepeatFactor() throws NotConvergedException {
SymmBandEVD evd = new SymmBandEVD(A.numRows(), false);
evd.factor(L.copy());
Expand All @@ -83,6 +86,7 @@ public void testLowerRepeatFactor() throws NotConvergedException {
assertEquals(L, evd.getEigenvalues(), evd.getEigenvectors());
}

@Ignore
public void testUpperRepeatFactor() throws NotConvergedException {
SymmBandEVD evd = new SymmBandEVD(A.numRows(), true);
evd.factor(U.copy());
Expand Down

0 comments on commit d09708e

Please sign in to comment.