Skip to content

Commit 228e7c7

Browse files
gdalledevmotion
andauthored
Fix tape printing (#252)
* Fix tape printing * Update tape.jl Co-authored-by: David Widmann <[email protected]> * Add string test --------- Co-authored-by: David Widmann <[email protected]>
1 parent 31016f4 commit 228e7c7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/tape.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function Base.show(io::IO, instruction::AbstractInstruction, pad = "")
110110
end
111111

112112
function Base.show(io::IO, tp::InstructionTape)
113-
println("$(length(tp))-element InstructionTape:")
113+
println(io, length(tp), "-element InstructionTape:")
114114
i = 1
115115
for instruction in tp
116116
print(io, "$i => ")

test/TapeTests.jl

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ for Instr in (SpecialInstruction, ScalarInstruction)
3131
@test tp[1].input[2] == y
3232
@test tp[1].output === z
3333
@test tp[1].cache === c
34+
@test startswith(string(tp), "1-element InstructionTape:")
3435

3536
ReverseDiff.record!(NULL_TAPE, Instr, +, (x, y, k), z, c)
3637
@test isempty(NULL_TAPE)

0 commit comments

Comments
 (0)