We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874f9d5 commit 36d499bCopy full SHA for 36d499b
src/parameter_indexing_proxy.jl
@@ -31,10 +31,10 @@ Method for customizing the table output. Keyword args:
31
- scalarize: whether to scalarize array symbolics in the table output.
32
- kwargs... are passed to the pretty_table call (if PrettyTables is loaded).
33
"""
34
-function show_params end
+show_params(io, pip; kwargs...) = _show_params(io, pip; kwargs...)
35
36
# Fallback implementation when PrettyTables is not loaded
37
-function show_params(io::IO, pip::ParameterIndexingProxy; num_rows = 20,
+function _show_params(io::IO, pip::ParameterIndexingProxy; num_rows = 20,
38
show_all = false, scalarize = true, kwargs...)
39
params = Any[]
40
vals = Any[]
0 commit comments