Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Microsoft.ML.Core/Utilities/BinFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ internal sealed class DynamicBinFinder : BinFinderBase
// the energy for (row, col), we only use energies for (row-1, colPrev) where colPrev <= col.
// Thus a single row of values is sufficient.
// REVIEW: Consider storing energies in reverse order to match the common access pattern.
// REVEIW: What should we use for the energy type?
// REVIEW: What should we use for the energy type?
Copy link
Preview

Copilot AI Aug 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spelling correction: 'REVEIW' has been correctly changed to 'REVIEW'.

Copilot uses AI. Check for mistakes.

private EnergyType[] _energies;
private EnergyType[] _energiesBest;

Expand Down
Loading