Skip to content

Commit

Permalink
[fix] namespace was wrong in one test (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
RMeli authored Oct 27, 2023
1 parent f6d1a40 commit 64aff7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/tests/test_lr_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ void init_wf(K_point<T> const& kp__, wf::Wave_functions<T>& phi__, int num_bands
{
std::vector<double> tmp(0xFFFF);
for (int i = 0; i < 0xFFFF; i++) {
tmp[i] = utils::random<double>();
tmp[i] = random<double>();
}

phi__.zero(sddk::memory_t::host, wf::spin_index(0), wf::band_range(0, num_bands__));
Expand Down

0 comments on commit 64aff7d

Please sign in to comment.