Skip to content
Snippets Groups Projects
Commit dc0d9161 authored by Van Dung Nguyen's avatar Van Dung Nguyen
Browse files

No commit message

No commit message
parent 977e2380
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ class eigenSolver{
_eigenValues.clear();
_eigenVectors.clear();
};
std::complex<double>& getEigenVectorComp(int num, int com){
std::complex<double> getEigenVectorComp(int num, int com){
return _eigenVectors[num][com];
};
};
......@@ -59,7 +59,7 @@ class eigenSolver{
std::complex<double> getEigenValue(int num){ return 0.; }
std::vector<std::complex<double> > &getEigenVector(int num){ return _dummy; }
void clear(){};
std::complex<double>& getEigenVectorComp(int num, int com) return 0;
std::complex<double> getEigenVectorComp(int num, int com) {return 0.;};
};
#endif
......
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