Skip to content

Commit

Permalink
Merge pull request #187 from ftsrg/hash-fix
Browse files Browse the repository at this point in the history
Fixed copy-paste error in hash code functions
  • Loading branch information
AdamZsofi authored Mar 22, 2023
2 parents 16e2d0a + b9a4cc5 commit cb24a21
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {

allprojects {
group = "hu.bme.mit.inf.theta"
version = "4.2.2"
version = "4.2.3"

apply(from = rootDir.resolve("gradle/shared-with-buildSrc/mirrors.gradle.kts"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public int hashCode() {
result = HASH_SEED;
result = 37 * result + prec1.hashCode();
result = 37 * result + prec2.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public int hashCode() {
result = HASH_SEED;
result = 37 * result + state1.hashCode();
result = 37 * result + state2.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down Expand Up @@ -214,7 +214,7 @@ public final int hashCode() {
result = HASH_SEED;
result = 37 * result + getIndex();
result = 37 * result + getState().hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public int hashCode() {
result = 37 * result + prec1.hashCode();
result = 37 * result + prec2.hashCode();
result = 37 * result + prec3.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public int hashCode() {
result = 37 * result + state1.hashCode();
result = 37 * result + state2.hashCode();
result = 37 * result + state3.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down Expand Up @@ -264,7 +264,7 @@ public final int hashCode() {
result = HASH_SEED;
result = 37 * result + getIndex();
result = 37 * result + getState().hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public int hashCode() {
result = 37 * result + prec2.hashCode();
result = 37 * result + prec3.hashCode();
result = 37 * result + prec4.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public int hashCode() {
result = 37 * result + state2.hashCode();
result = 37 * result + state3.hashCode();
result = 37 * result + state4.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down Expand Up @@ -306,7 +306,7 @@ public final int hashCode() {
result = HASH_SEED;
result = 37 * result + getIndex();
result = 37 * result + getState().hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public final int hashCode() {
if (result == 0) {
result = getHashSeed();
result = 37 * result + getOp().hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public int hashCode() {
result = HASH_SEED;
result = 37 * result + concrState.hashCode();
result = 37 * result + abstrState.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public int hashCode() {
result = HASH_SEED;
result = 37 * result + concrState.hashCode();
result = 37 * result + abstrState.hashCode();
result = hashCode;
hashCode = result;
}
return result;
}
Expand Down

0 comments on commit cb24a21

Please sign in to comment.