Skip to content

Commit

Permalink
Parse qss test method in runform.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Apr 20, 2023
1 parent 3927fd4 commit 704d6d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/gui/runform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ int RunDlg::getSolverIdx(QString str)
if (str.trimmed() == "CVODE_BDF") return 11;
if (str.trimmed() == "CVODE_AM") return 12;
if (str.trimmed() == "IDA") return 13;
if (str.trimmed() == "QSS_TEST") return 14;
return -1;
}

Expand Down Expand Up @@ -154,6 +155,8 @@ QString RunDlg::getSolverString(int idx)
return "CVODE_AM";
case 13:
return "IDA";
case 14:
return "QSS_TEST";
}
return QString();
}
Expand Down

0 comments on commit 704d6d2

Please sign in to comment.