我正在尝试在我的项目中实现匈牙利算法,但我不明白为什么它会产生无限循环......我尝试过使用其他 bibartite 图并且它有效。所以我想知道我的图表有什么问题G
from hungarian_algorithm import algorithm
G={
'agt2': {'Commentaire':200,'PhotoProfil': 8, 'PhotoSupp': 10, 'Prenom': 0},
'coco': {'Commentaire': 300, 'PhotoProfil': 200, 'PhotoSupp': 300, 'Prenom': 300}
}
res=algorithm.find_matching(G,matching_type='max',return_type='list')
print(res)