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
Can you explain for me why was the code block added ?
for (from = 0; from < MAX_CITIES; from++)
{
for (to = 0; to<MAX_CITIES; to++)
{
phero[from][to] *= RHO;
}
}
I think RHO is Evaporation rate and computed in line: 264
phero[from][to] *= (1.0 - RHO);
The text was updated successfully, but these errors were encountered:
Can you explain for me why was the code block added ?
for (from = 0; from < MAX_CITIES; from++)
{
for (to = 0; to<MAX_CITIES; to++)
{
phero[from][to] *= RHO;
}
}
I think RHO is Evaporation rate and computed in line: 264
phero[from][to] *= (1.0 - RHO);
The text was updated successfully, but these errors were encountered: