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 Solve row and Reduce-To row's info tooltips (the "Classification" section PopoverTooltipClick renders) show raw C# enum member names directly, unlike the rest of the app:
SolveRowReact.js's "Solver type" field showed e.g. "BruteForce" instead of "Brute Force".
ReduceToRowReact.js's "Complexity class" field showed e.g. "NPComplete" instead of "NP-Complete".
The Solve row and Reduce-To row's info tooltips (the "Classification" section PopoverTooltipClick renders) show raw C# enum member names directly, unlike the rest of the app:
Should use the same label lookups (
complexityClassLabel,solverTypeLabel,reductionTypeLabel— #189/#194) already used everywhere else.