Skip to content

Commit

Permalink
fixed Multivariate Test
Browse files Browse the repository at this point in the history
  • Loading branch information
MMRROOO committed Mar 8, 2024
1 parent fecf617 commit cbabf0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/Test_MultivariateExpansion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ TEST_CASE( "Testing multivariate expansion", "[MultivariateExpansion]") {
CHECK(func.numCoeffs == (mset.Size()*outDim));
std::vector<unsigned int> nonzeroDiagTerms_ref = mset.NonzeroDiagonalEntries();
std::vector<unsigned int> diagCoeffs = func.DiagonalCoeffIndices();
REQUIRE(nonzeroDiagTerms_ref == diagCoeffs);

REQUIRE((nonzeroDiagTerms_ref == diagCoeffs));

Kokkos::View<double*,Kokkos::HostSpace> coeffs("coefficients", func.numCoeffs);
for(unsigned int i=0; i<func.numCoeffs; ++i)
Expand Down

0 comments on commit cbabf0d

Please sign in to comment.