Skip to content

Commit

Permalink
Incorrect initialization fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Hakon G committed Dec 16, 2024
1 parent 2e903a2 commit b49301d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gortools/src/main/scala/gorsat/Analysis/GorQueen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ object GorQueen {
*/
val GTS1length = bui.outputBucketID.length
val outputSize2 = bui.outputBucketID2.length
val IDX1 = new Array[Int](outputSize2)
val IDX1 = new Array[Int](GTS1length)
val GTS2 = new Array[Char](outputSize2)
var IDX1size : Int = 0

Expand Down

0 comments on commit b49301d

Please sign in to comment.