Skip to content

Commit 98515b4

Browse files
fix reduce operation
1 parent ae38a33 commit 98515b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Interface/Object_Methods/Matrix_Methods.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function ==(A::GrB_Matrix{T}, B::GrB_Matrix{U}) where {T, U}
126126
return false
127127
end
128128

129-
result = GrB_reduce(GrB_NULL, GxB_LAND_BOOL_MONOID, C, GrB_NULL)
129+
result = GrB_reduce(GxB_LAND_BOOL_MONOID, C, GrB_NULL)
130130

131131
GrB_free(C)
132132

src/Interface/Object_Methods/Vector_Methods.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function ==(A::GrB_Vector{T}, B::GrB_Vector{U}) where {T, U}
124124
return false
125125
end
126126

127-
result = GrB_reduce(GrB_NULL, GxB_LAND_BOOL_MONOID, C, GrB_NULL)
127+
result = GrB_reduce(GxB_LAND_BOOL_MONOID, C, GrB_NULL)
128128

129129
GrB_free(C)
130130

0 commit comments

Comments
 (0)