Skip to content
Snippets Groups Projects
Commit 4748f0a1 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

consistent includes

parent da064905
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#define DIAGONALIZER_HPP_INCLUDED #define DIAGONALIZER_HPP_INCLUDED
#include <vector> #include <vector>
#include <iostream> #include <iostream>
#include <utility>
extern "C" void dsyev_( extern "C" void dsyev_(
char const & JOBZ, // 'N': Only eigenvalues, 'V': Eigenvalues and -vectors char const & JOBZ, // 'N': Only eigenvalues, 'V': Eigenvalues and -vectors
...@@ -80,7 +81,7 @@ class Diagonalizer{ ...@@ -80,7 +81,7 @@ class Diagonalizer{
int info_; int info_;
double dwork_; double dwork_;
int lwork_; int lwork_;
int N_; //linear matrix dimension int N_; //linear matrix dimension
std::vector<double> matrix_; //the matrix std::vector<double> matrix_; //the matrix
std::vector<double> eigenvalues_; //eigenvalues std::vector<double> eigenvalues_; //eigenvalues
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#define DIAGONALIZER_HPP_INCLUDED #define DIAGONALIZER_HPP_INCLUDED
#include <vector> #include <vector>
#include <iostream> #include <iostream>
#include <utility>
extern "C" void dsyev_( extern "C" void dsyev_(
char const & JOBZ, // 'N': Only eigenvalues, 'V': Eigenvalues and -vectors char const & JOBZ, // 'N': Only eigenvalues, 'V': Eigenvalues and -vectors
...@@ -80,7 +81,7 @@ class Diagonalizer{ ...@@ -80,7 +81,7 @@ class Diagonalizer{
int info_; int info_;
double dwork_; double dwork_;
int lwork_; int lwork_;
int N_; //linear matrix dimension int N_; //linear matrix dimension
std::vector<double> matrix_; //the matrix std::vector<double> matrix_; //the matrix
std::vector<double> eigenvalues_; //eigenvalues std::vector<double> eigenvalues_; //eigenvalues
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment