Skip to content

Commit 0e29ebb

Browse files
vsarakhanСарахан Владислав Сергеевич
andauthored
Fix ElementwiseGreaterThanOrEqual to use >= instead of == (#7475)
Co-authored-by: Сарахан Владислав Сергеевич <[email protected]>
1 parent 0708301 commit 0e29ebb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Data.Analysis/Computations/Arithmetic.net8.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ protected override void ElementwiseGreaterThanOrEqual(ReadOnlySpan<DateTime> x,
510510
{
511511
for (var i = 0; i < x.Length; i++)
512512
{
513-
destination[i] = (x[i] == y);
513+
destination[i] = (x[i] >= y);
514514
}
515515
}
516516

0 commit comments

Comments
 (0)