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
In SfxrParams.as at line 422-443 the formula use to randomize is:
Math.random() * mutation*2 - mutation;
While should be:
Math.random() * (mutation*2 - mutation);
Consider:
mutation = 0.05;
Math.random() = 0;
Old formula:
0 * 0.05*2 - 0.05 = -0.05; // Not expected
New formula:
0 * (0.05*2 - 0.05) = 0; // Expected
Original issue reported on code.google.com by [email protected] on 26 Apr 2011 at 5:57
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 26 Apr 2011 at 5:57The text was updated successfully, but these errors were encountered: