Skip to content

Commit

Permalink
Merge pull request #639 from dmcdougall/gpmsa_fix_k_setup
Browse files Browse the repository at this point in the history
Fix bug in K setup
  • Loading branch information
roystgnr authored Sep 25, 2017
2 parents 90caaaf + e056016 commit c6c71a0
Show file tree
Hide file tree
Showing 2 changed files with 994 additions and 994 deletions.
2 changes: 1 addition & 1 deletion src/gp/src/GPMSA.C
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ GPMSAFactory<V, M>::setUpEmulator()
{
const unsigned int i = i1 * numOutputs + i2;
const unsigned int j = k * m_numSimulations + i1;
(*K)(i,j) = SM_singularVectors(i2,k);
(*K)(i,j) = (*m_TruncatedSVD_simulationOutputs)(i2,k);
}

KT_K_inv.reset
Expand Down
Loading

0 comments on commit c6c71a0

Please sign in to comment.