We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a1a3c9 commit bbab9b3Copy full SHA for bbab9b3
utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt
@@ -167,6 +167,7 @@ object PythonTree {
167
168
override fun typeEquals(other: Any?): Boolean {
169
return if (other is NDArrayNode)
170
+ dimensions == other.dimensions &&
171
children.zip(other.children).all {
172
it.first.typeEquals(it.second)
173
}
@@ -175,7 +176,7 @@ object PythonTree {
175
176
177
178
override fun toString(): String {
- return "ndarray[${items.values}], shape: ($dimensions)"
179
+ return "ndarray${items.values}, shape: $dimensions"
180
181
182
0 commit comments