Codeforces / polygon-issue-tracking

polygon-issue-tracking
16 stars 2 forks source link

Generator flags with same name as the generator are not displayed properly #531

Closed quangloc99 closed 9 months ago

quangloc99 commented 11 months ago

image

In this image, the second test generator script is shown as

gen -t 10000 -sum-n 200000 -min-n 10 -wr 1 -wp 1 -ws 1 -noise 0 --strat random

In reality, what I have typed is

gen -t 10000 -sum-n 200000 -min-n 10 -wr 1 -wp 1 -ws 1 -noise 0 -gen-strat random

Notice the last flag: -gen-strat was replaced with --strat.

This is only a visual bug, and does not affect the actual script. I guess the code was trying to replace the generator name with the display link?

MikeMirzayanov commented 10 months ago

Seems fixed now. Can you confirm?

quangloc99 commented 9 months ago

Yes, I can confirm that this is fixed! Nice work!

I'll close this issue.