From 74136695b8aaae2c7afd3bbf8047e638af2df730 Mon Sep 17 00:00:00 2001 From: Pablo San-Jose Date: Wed, 30 Jun 2021 17:44:41 +0200 Subject: [PATCH] fix parametric show --- src/parametric.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parametric.jl b/src/parametric.jl index 7aacbebd..7138de4d 100644 --- a/src/parametric.jl +++ b/src/parametric.jl @@ -14,7 +14,7 @@ end function Base.show(io::IO, ::MIME"text/plain", pham::ParametricHamiltonian{N}) where {N} i = get(io, :indent, "") print(io, i, "Parametric") - show(io, pham.h) + show(io, pham.hbase) print(io, i, "\n", "$i Parameters : $(parameters(pham)) $i Check each call : $(pham.check)")