def __init__(self, s: float = 0, u: float = 0, o: float = 0):
"""Used list start analysis abstract domain representation.
:param s: initial end of S-elements in list: should be a float in ``[0,1,2,..., inf]``
:param u: initial end of U-elements in list: should be a float in ``[0,1,2,..., inf]``
:param o: initial end of O-elements in list: should be a float in ``[0,1,2,..., inf]``
"""
super().__init__()
self._suo = OrderedDict([
(S, s),
(U, u),
(O, o)
])
评论列表
文章目录