Skip to content
Snippets Groups Projects
Commit 4ae62d36 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent 8633fa99
No related branches found
No related tags found
No related merge requests found
......@@ -41,9 +41,10 @@ class eigenSolver{
public:
eigenSolver(dofManager<double> *manager, std::string A,
std::string B="", bool hermitian=false){}
void solve(int numEigenValues=0, std::string which="")
bool solve(int numEigenValues=0, std::string which="")
{
Msg::Error("Eigen solver requires SLEPc");
return false;
}
int getNumEigenValues(){ return 0; }
std::complex<double> getEigenValue(int num){ return 0.; }
......
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