in LinearSolverChol.java:78:
if( B.numCols != X.numCols && B.numRows != n && X.numRows != n) {
throw new IllegalArgumentException("Unexpected matrix size");
}
obviosuly, must be:
if( B.numCols != X.numCols || B.numRows != n || X.numRows != n) {
...
otherwise, the exception is thrown only if ALL preconditions fail.
Original issue reported on code.google.com by illya.ko...@gmail.com on 26 Apr 2014 at 11:18
Original issue reported on code.google.com by
illya.ko...@gmail.com
on 26 Apr 2014 at 11:18