Skip to content

Commit

Permalink
Merge pull request #291 from sandialabs/bugfix_eigensolver
Browse files Browse the repository at this point in the history
Change eigensolver initial iterate (bugfix)
  • Loading branch information
kuberry authored Oct 17, 2022
2 parents ae7dedf + c9effa6 commit 3f6cc9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/Compadre_Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2
1.5.3
2 changes: 1 addition & 1 deletion src/Compadre_LinearAlgebra_Definitions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ void largestTwoEigenvectorsThreeByThreeSymmetric(const member_type& teamMember,
double eigenvalue_relative_tolerance = 1e-6; // TODO: use something smaller, but really anything close is acceptable for this manifold


double v[3] = {1,1,1};
double v[3] = {rand_gen.drand(maxRange),rand_gen.drand(maxRange),rand_gen.drand(maxRange)};
double v_old[3] = {v[0], v[1], v[2]};

double error = 1;
Expand Down

0 comments on commit 3f6cc9a

Please sign in to comment.