Skip to content

Commit

Permalink
增大eps,减少SVD分解卡死的概率
Browse files Browse the repository at this point in the history
  • Loading branch information
zuoqing1988 committed May 21, 2022
1 parent 117e9bc commit 7e4e5b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 3rdparty/include/ZQlib/ZQ_MathBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ namespace ZQ
int pp = p-1;
int iter = 0;
//double eps = pow( 2.0, -52.0 );
T eps = pow(2.0, -52.0);
T eps = pow(2.0, -30.0);

while( p > 0 )
{
Expand Down

0 comments on commit 7e4e5b4

Please sign in to comment.