public boolean equals()

in computer-driver/src/main/java/org/apache/hugegraph/computer/driver/SuperstepStat.java [91:102]


    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.messageCount == other.messageCount &&
               this.messageBytes == other.messageBytes &&
               this.active == other.active;
    }