wire branching traversal itself works, but fetches wrong signal status

This commit is contained in:
minjaesong
2021-08-12 11:38:48 +09:00
parent 884c129837
commit a6d082fb7d
6 changed files with 96 additions and 76 deletions

View File

@@ -18,6 +18,9 @@ class IntArrayStack {
private lateinit var data: IntArray
fun isEmpty() = depth == 0
fun isNotEmpty() = depth > 0
constructor(stackSize: Int) {
data = IntArray(stackSize)
}