Hi Fabio,

I just read your report on the bug tracker. Your analysis is of course
correct: I had moved some code recently and introduced that mistake by
the way (the randomization was done conditionally at the wrong place,
instead I put it at the right place but forgot the condition). I'll
fix it and commit later today.

Regarding your last comment, I believe you could have done:
  if mode = Randomize then ...
or (less efficient)
  if mode <> Normal && mode <> Random then ...
or a pattern matching (rigorously equivalent to the first solution)
  (match mode with Randomize -> ... | _ -> ())

Thanks again!
-- 
David

------------------------------------------------------------------------------
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
_______________________________________________
Savonet-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/savonet-users

Reply via email to