Skip to content

Commit 3cbc088

Browse files
committed
refactor: add clarifying comments
1 parent 61447f0 commit 3cbc088

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/GraphBLAS-sharp.Backend/Quotes/Arithmetic.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ module ArithmeticOperations =
6060
<@ fun (x: byte option) (y: byte option) ->
6161
let mutable res = 0
6262

63+
// Converted to int because of Quotations Evaluator issue.
6364
let xInt =
6465
match x with
6566
| Some x -> Some(int x)
@@ -116,6 +117,7 @@ module ArithmeticOperations =
116117
<@ fun (x: byte option) (y: byte option) ->
117118
let mutable res = 0
118119

120+
// Converted to int because of Quotations Evaluator issue.
119121
let xInt =
120122
match x with
121123
| Some x -> Some(int x)

0 commit comments

Comments
 (0)