Skip to content

Commit 39361c4

Browse files
committed
Fix formatting bug
1 parent 15f415e commit 39361c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tests/GraphBLAS-sharp.Tests/Backend/Algorithms

tests/GraphBLAS-sharp.Tests/Backend/Algorithms/PageRank.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ let pageRankNaive (matrix: float32 [,]) =
5151

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

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

0 commit comments

Comments
 (0)