This commit is contained in:
Mike J Innes 2017-09-12 13:06:32 +01:00
parent 9348a47479
commit 28bbef81b9

View File

@ -16,8 +16,6 @@ function (m::Recur)(xs...)
return y return y
end end
(m::Recur)(s::Seq) = Seq(map(m, s.data))
Optimise.children(m::Recur) = (m.cell,) Optimise.children(m::Recur) = (m.cell,)
Base.show(io::IO, m::Recur) = print(io, "Recur(", m.cell, ")") Base.show(io::IO, m::Recur) = print(io, "Recur(", m.cell, ")")