diff --git a/doc/html/bug.html b/doc/html/bug.html index ed8264e..7701fb4 100644 --- a/doc/html/bug.html +++ b/doc/html/bug.html @@ -76,17 +76,19 @@ $(function() {
File jacobi.cpp
The eigenvalues fail the test. When comparing them to arma::eigsym there is one value that is way off when testing with a 6x6 matrix.
File jacobi.hpp
-
No known bugs
-
File matrix.cpp
-
No known bugs
-
File matrix.hpp
No known bugs
-
File test_suite.cpp
+
File main.cpp
+
No known bugs
+
File matrix.cpp
No known bugs
-
File utils.cpp
+
File matrix.hpp
+
No known bugs
+
File test_suite.cpp
No known bugs
+
File utils.cpp
+
No known bugs
File utils.hpp
-
No known bugs
+
No known bugs
diff --git a/doc/html/files.html b/doc/html/files.html index e4cdc2b..dd75b52 100644 --- a/doc/html/files.html +++ b/doc/html/files.html @@ -79,9 +79,10 @@ $(function() {  matrix.hppFunction prototypes for creating tridiagonal matrices  utils.hppFunction prototypes and macros that are useful  jacobi.cppImplementation of the jacobi rotation method - matrix.cppFunction prototypes for creating tridiagonal matrices - test_suite.cppTest suite for project 2 - utils.cppImplementation of the utils + main.cppMain program for Project 2 + matrix.cppFunction prototypes for creating tridiagonal matrices + test_suite.cppTest suite for project 2 + utils.cppImplementation of the utils diff --git a/doc/html/jacobi_8cpp.html b/doc/html/jacobi_8cpp.html index 60c9b48..b2b3817 100644 --- a/doc/html/jacobi_8cpp.html +++ b/doc/html/jacobi_8cpp.html @@ -77,7 +77,9 @@ $(function() {

Implementation of the jacobi rotation method. More...

-
#include <cmath>
+
#include <algorithm>
+#include <cmath>
+#include <utility>
#include "utils.hpp"
#include "jacobi.hpp"
#include "matrix.hpp"
diff --git a/doc/html/jacobi_8hpp.html b/doc/html/jacobi_8hpp.html index 6952681..475ce9a 100644 --- a/doc/html/jacobi_8hpp.html +++ b/doc/html/jacobi_8hpp.html @@ -99,7 +99,7 @@ Functions
Author
Cory Alexander Balaton (coryab)
Janita Ovidie Sandtrøen Willumsen (janitaws)
-
Bug:
No known bugs
+
Bug:
No known bugs

Function Documentation

◆ jacobi_eigensolver()

diff --git a/doc/html/jacobi_8hpp_source.html b/doc/html/jacobi_8hpp_source.html index 98710d5..844b3c8 100644 --- a/doc/html/jacobi_8hpp_source.html +++ b/doc/html/jacobi_8hpp_source.html @@ -93,8 +93,8 @@ $(function() {
46 bool& converged);
47
48#endif
-
void jacobi_rotate(arma::mat &A, arma::mat &R, int k, int l)
Computes a single rotation.
Definition: jacobi.cpp:15
-
void jacobi_eigensolver(const arma::mat &A, double eps, arma::vec &eigenvalues, arma::mat &eigenvectors, const int maxiter, int &iterations, bool &converged)
Solves the eigenvalue problem using the jacobi rotation method.
Definition: jacobi.cpp:54
+
void jacobi_rotate(arma::mat &A, arma::mat &R, int k, int l)
Computes a single rotation.
Definition: jacobi.cpp:17
+
void jacobi_eigensolver(const arma::mat &A, double eps, arma::vec &eigenvalues, arma::mat &eigenvectors, const int maxiter, int &iterations, bool &converged)
Solves the eigenvalue problem using the jacobi rotation method.
Definition: jacobi.cpp:56