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
There is arc->cap_upper_bound_ in change arc function "CHECK_GE(arc->cap_upper_bound_, 0); "
this check should have been done in AddArc function before adding this value to the arc.
In current function we can have same check on incoming value to check the validity of incoming value cap_upper_bound like CHECK_GE(cap_upper_bound, 0);.
The text was updated successfully, but these errors were encountered:
There is arc->cap_upper_bound_ in change arc function "CHECK_GE(arc->cap_upper_bound_, 0); "
this check should have been done in AddArc function before adding this value to the arc.
In current function we can have same check on incoming value to check the validity of incoming value cap_upper_bound like CHECK_GE(cap_upper_bound, 0);.
The text was updated successfully, but these errors were encountered: