1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2026-01-02 01:39:27 +00:00

FitInterface: control of SVD tolerance

This commit is contained in:
2016-04-05 14:29:34 +01:00
parent 939520db24
commit 2fca987e8f
2 changed files with 13 additions and 0 deletions

View File

@@ -191,6 +191,16 @@ const set<Index> & FitInterface::getDataIndexSet(void) const
return dataIndexSet_;
}
double FitInterface::getSvdTolerance(void) const
{
return svdTol_;
}
void FitInterface::setSvdTolerance(const double &tol)
{
svdTol_ = tol;
}
VarName & FitInterface::xName(void)
{
return xName_;