用法:
is_active()
如果可以取得更多進展,則返回
True
,否則返回False
。如果循環沒有阻止解決方案,並且仍有節點準備就緒但TopologicalSorter.get_ready()
尚未返回或標記為TopologicalSorter.done()
的節點數小於TopologicalSorter.get_ready()
返回的數量,則可以取得進展 .此類的
__bool__()
方法遵循此函數,因此代替:if ts.is_active(): ...
可以簡單地做:
if ts: ...
如果之前沒有調用
prepare()
,則引發ValueError
。
相關用法
- Python graphlib.TopologicalSorter.static_order用法及代碼示例
- Python graphlib.TopologicalSorter用法及代碼示例
- Python numpy string greater_equal()用法及代碼示例
- Python Tkinter grid()用法及代碼示例
- Python PIL getbands() and getextrema()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python getattr()用法及代碼示例
- Python OpenCV getTrackbarPos()用法及代碼示例
- Python OpenCV getgaussiankernel()用法及代碼示例
- Python gzip.compress(s)用法及代碼示例
- Python globals()用法及代碼示例
- Python OpenCV getRotationMatrix2D()用法及代碼示例
- Python gcd()用法及代碼示例
- Python PIL getbands()用法及代碼示例
- Python gettext.GNUTranslations.ngettext用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python gc.is_finalized用法及代碼示例
- Python gc.is_tracked用法及代碼示例
- Python math gamma()用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 graphlib.TopologicalSorter.is_active。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。