Remove line comments with release number

This commit is contained in:
Lew Rossman
2021-04-17 10:24:42 -04:00
parent 533466b796
commit bec7c0db0f
2 changed files with 2 additions and 2 deletions

View File

@@ -554,7 +554,7 @@ void newdemandflows(Project *pr, Hydbalance *hbal, double *qsum, double *dqsum)
dq = (hloss - dh) / hgrad;
dq *= hyd->RelaxFactor;
// Prevent a flow change greater than full demand //(2.2.1)
// Prevent a flow change greater than full demand
if (fabs(dq) > hyd->NodeDemand[i])
dq = 0.5 * SGN(dq) * hyd->NodeDemand[i];
hyd->DemandFlow[i] -= dq;