Skip to content

Commit

Permalink
Fix formatting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgarbar committed Oct 24, 2023
1 parent 15f415e commit 39361c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/GraphBLAS-sharp.Tests/Backend/Algorithms/PageRank.fs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ let pageRankNaive (matrix: float32 [,]) =

while (error > accuracy) do
for r in 0 .. rowCount - 1 do
result [ r ] <- 0f
result.[r] <- 0f

for c in 0 .. rowCount - 1 do
result.[r] <- result.[r] + matrix.[r, c] * prev.[c]
Expand Down

0 comments on commit 39361c4

Please sign in to comment.