From 9b9fb61cb55d10e0b026255df1e5bcc975d8a5b4 Mon Sep 17 00:00:00 2001 From: Pablo San-Jose Date: Wed, 30 Jun 2021 17:47:58 +0200 Subject: [PATCH] fix to parametric show --- src/parametric.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parametric.jl b/src/parametric.jl index 7138de4d..b5c9796c 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.hbase) + show(io, pham.baseh) print(io, i, "\n", "$i Parameters : $(parameters(pham)) $i Check each call : $(pham.check)")