]> git.tdb.fi Git - libs/math.git/commitdiff
Fix a function name
authorMikko Rasa <tdb@tdb.fi>
Sat, 1 Jun 2019 21:55:40 +0000 (00:55 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sat, 1 Jun 2019 21:55:40 +0000 (00:55 +0300)
The definition was changed in fb1e198 but since everything is templates,
I didn't notice the incorrect name here.

source/linal/dynamicmatrix.h

index 3852424876c1cc72e9befa66e12cd0f54147659f..1bbed275844c3fe06a60e4f09644c7c668bd4c5d 100644 (file)
@@ -307,7 +307,7 @@ inline DynamicMatrix<T> &DynamicMatrix<T>::invert()
        for(unsigned i=0; i<rows_; ++i)
                r(i, i) = T(1);
 
-       return invert_matrix(*this, r);
+       return gauss_jordan(*this, r);
 }
 
 template<typename T>