You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Microsoft.CodeAnalysis.Differencing.Match.ComputeMatchForLabel method attempts to approximate an O(N^2) matching algorithm with multiple passes with difference distance thresholds. It is expected that those passes are often executed within O(N). However, it is not guaranteed and, O(N^2) still happens often.
Moreover, it is observed that:
Passes perform the same calculations multiple times. We can fix this by saving information between passes.
The Microsoft.CodeAnalysis.Differencing.Match.ComputeMatchForLabel method attempts to approximate an O(N^2) matching algorithm with multiple passes with difference distance thresholds. It is expected that those passes are often executed within O(N). However, it is not guaranteed and, O(N^2) still happens often.
Moreover, it is observed that:
The text was updated successfully, but these errors were encountered: