Submitted by 0xsanson, also found by broccoli
In HybridPool.sol, functions _computeLiquidityFromAdjustedBalances, _getY and _getYD may finish before approximation converge, since its limited by MAX_LOOP_LIMIT iterations.
In this situation the final estimated value will still be treated as correct, even though it could be relatively inaccurate.
Consider reverting the transactions if this doesnt occur.
See https://blog.openzeppelin.com/saddle-contracts-audit/ issue [M03], with their relative fix.
