Skip to content

Commit 7df3904

Browse files
fix: fix maketerm of hvncat
1 parent ab942f2 commit 7df3904

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/types.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1561,6 +1561,12 @@ function basicsymbolic(::Type{T}, f, args, type::TypeT, metadata) where {T}
15611561
@set! res.metadata = metadata
15621562
end
15631563
return res
1564+
elseif f === hvncat
1565+
sh = ShapeVecT()
1566+
for dim in unwrap_const(args[1])
1567+
push!(sh, 1:dim)
1568+
end
1569+
BSImpl.Term{T}(f, args; type, shape = sh)
15641570
elseif _numeric_or_arrnumeric_type(type)
15651571
if f === (+)
15661572
res = add_worker(T, args)

0 commit comments

Comments
 (0)