Skip to content

Commit 97b6db4

Browse files
committed
Module qualifiers
1 parent 0ab7361 commit 97b6db4

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/GraphBLAS-sharp.Backend/Algorithms/PageRank.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ open GraphBLAS.FSharp.Objects.ClContextExtensions
1111
open GraphBLAS.FSharp.Objects.ArraysExtensions
1212
open GraphBLAS.FSharp.Objects.ClCellExtensions
1313

14+
[<RequireQualifiedAccess>]
1415
module PageRank =
1516
type PageRankMatrix =
1617
| PreparedMatrix of ClMatrix<float32>

src/GraphBLAS-sharp.Backend/Algorithms/PageRank.fsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace GraphBLAS.FSharp.Backend.Algorithms
33
open Brahma.FSharp
44
open GraphBLAS.FSharp.Objects
55

6+
[<RequireQualifiedAccess>]
67
module PageRank =
78
[<Sealed>]
89
type PageRankMatrix =

src/GraphBLAS-sharp.Backend/Algorithms/SSSP.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ open GraphBLAS.FSharp.Backend.Quotes
77
open GraphBLAS.FSharp.Objects.ClContextExtensions
88
open GraphBLAS.FSharp.Objects.ClCellExtensions
99

10-
module SSSP =
10+
module internal SSSP =
1111
let run (clContext: ClContext) workGroupSize =
1212

1313
let less = ArithmeticOperations.less<int>

0 commit comments

Comments
 (0)