Closed PetterS closed 11 years ago
See solver.h:51 https://github.com/inutard/matrix-factor/blob/master/source/solver.h#L51
This line will not work in release mode on my compiler. The compiler simply removes all asserts, completely ignoring the load command.
Solution:
auto result = A.load(filename); assert(result);
Thanks, Petter!
See solver.h:51 https://github.com/inutard/matrix-factor/blob/master/source/solver.h#L51
This line will not work in release mode on my compiler. The compiler simply removes all asserts, completely ignoring the load command.
Solution:
auto result = A.load(filename); assert(result);