Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahdhn committed Jul 20, 2024
1 parent bccb325 commit 5b89bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rxmesh/matrix/dense_matrix.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ struct DenseMatrix
* @brief fill in the matrix with random numbers on both host and device
* @return
*/
__host__ void fill_random(T min = T(-1), T max = T(1))
__host__ void fill_random(double minn = -1.0, double maxx = 1.0)
{
std::random_device rd;
std::mt19937 gen(rd());
Expand Down

0 comments on commit 5b89bd9

Please sign in to comment.