removed extra ;

was causing problems with cc on SunOS

also took out some blank lines to make the format of the file a little
nicer
This commit is contained in:
Kent Mein 2002-10-29 21:46:46 +00:00
parent e03c322a2e
commit 91f956dfe2

@ -263,13 +263,10 @@ void SVD(MaTRiX &a, VecToR &w, MaTRiX &v, VecToR &work_space) {
w(k)=x;
}
}
};
}
// A is replaced by the column orthogonal matrix U
template <class MaTRiX, class VecToR >
void SVD_a( MaTRiX &a, VecToR &w, MaTRiX &v) {
@ -468,40 +465,7 @@ void SVD_a( MaTRiX &a, VecToR &w, MaTRiX &v) {
}
}
}
}
#endif