DynamicPolynomials.jl
DynamicPolynomials.jl copied to clipboard
Don't omit the times symbol when print a polynomial
Try this
julia> @polyvar p beta
(p, beta)
julia> p*beta
pbeta
Shouldn't there a \times or a *?
We omit the * for conciseness as the variables usually only have only one symbol. One idea would be to use * in case at least one variables have multiple symbols.
Most CAS at least print a space between symbols. Without it, it would be difficult to copy and paste results between different systems.