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

No commit message

No commit message
parent 3752e462
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ class eigenSolver{
public:
eigenSolver(dofManager<double> *manager, std::string A,
std::string B="", bool hermitian=true);
eigenSolver(linearSystemPETSc<double> *A,linearSystemPETSc<double>* B = NULL, bool hermitian=false);
eigenSolver(linearSystemPETSc<double> *A,linearSystemPETSc<double>* B = NULL, bool hermitian=true);
bool solve(int numEigenValues=0, std::string which="");
int getNumEigenValues(){ return _eigenValues.size(); }
std::complex<double> getEigenValue(int num){ return _eigenValues[num]; }
......
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