コード例 #1
0
ファイル: clique.go プロジェクト: quanzongfeng/crf
func (h *HeapElement) Compare(b heap.Value) (bool, error) { //used for minheap
	return h.Value() < b.Value(), nil
}
コード例 #2
0
ファイル: node.go プロジェクト: quanzongfeng/crf
func (n *Node) Compare(b heap.Value) (bool, error) {
	return n.Value() < b.Value(), nil
}