in computer-core/src/main/java/org/apache/hugegraph/computer/core/graph/SuperstepStat.java [134:147]
public boolean equals(Object obj) {
if (!(obj instanceof SuperstepStat)) {
return false;
}
SuperstepStat other = (SuperstepStat) obj;
return this.vertexCount == other.vertexCount &&
this.edgeCount == other.edgeCount &&
this.finishedVertexCount == other.finishedVertexCount &&
this.messageSendCount == other.messageSendCount &&
this.messageSendBytes == other.messageSendBytes &&
this.messageRecvCount == other.messageRecvCount &&
this.messageRecvBytes == other.messageRecvBytes &&
this.active == other.active;
}