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
* Use dynamic bounds casts with count(0) to update observed bounds before from_count is modified * Change the type of the node_t::from_count field from int to unsigned int, and remove dynamic bounds casts for other_node->from_node and other_node->coeffs Since the type of from_count is now unsigned int, other_node->from_count now has an original value of other_node->from_count - 1 in the increment ++other_node->from_count. This means that the value of other_node->from_count is not lost, so the observed bounds of other_node->from_node and other_node->coeffs are no longer bounds(unknown) after the increment. Therefore, we no longer need dynamic bounds casts here.
0 commit comments