nus-cs2103-AY2425S1 / forum

12 stars 0 forks source link

Misbehaviour of app at unreasonably large values #675

Closed RezwanAhmed123 closed 2 days ago

RezwanAhmed123 commented 2 days ago

Our app works until the number becomes unreasonably large and the value starts misbehaving just before the integer overflow. Can we fix this bug or do we have to put it into a proposed enhancement?

image

damithc commented 2 days ago

@RezwanAhmed123 How does it measure up against the following guideline?

image

If you don't expect the number to be higher than a certain value in normal usage, you can indicate an 'acceptable' range of inputs in the UG, even if it is not enforced it in the app. The enforcing or expanding the range can be postponed to a future version.

RezwanAhmed123 commented 2 days ago

ok prof, understood!