Delete EquivalentBug function

This commit is contained in:
vince 2020-08-27 20:09:55 +08:00
parent 8a4e4a1290
commit 98a1d831f0

View File

@ -749,22 +749,3 @@ func (bug *Bug) Compile() Snapshot {
return snap return snap
} }
// EquivalentBug returns true if two bugs are equal
func EquivalentBug(expected, actual *Bug) bool {
if len(expected.packs) != len(actual.packs) {
return false
}
for i := range expected.packs {
for j := range expected.packs[i].Operations {
actual.packs[i].Operations[j].base().id = expected.packs[i].Operations[j].base().id
}
}
if expected != actual {
return false
}
return true
}