Skip to content

Commit

Permalink
Merge pull request #48 from nsajko/t
Browse files Browse the repository at this point in the history
print: fix UndefVarError: NParams not defined
  • Loading branch information
saschatimme authored Sep 8, 2022
2 parents 2552d74 + 064556c commit 8a92469
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/polynomial_system.jl
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function Base.show(io::IO, p::PolynomialSystem{N, NVars, NParams}) where {N, NVa
foreach(pi -> println(io, "\n", " ", pi), p)
end

function Base.print(io::IO, p::PolynomialSystem{N, NVars}) where {N, NVars, NParams}
function Base.print(io::IO, p::PolynomialSystem{N, NVars, NParams}) where {N, NVars, NParams}
print(io, "PolynomialSystem{$N, $NVars, $NParams}(")
foreach(pi -> print(io, pi, ", "), p)
print(")")
Expand Down

0 comments on commit 8a92469

Please sign in to comment.