File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -598,7 +598,7 @@ where `coeff` and the vals are `<:Number` and keys are symbolic.
598598- `arguments(::Add)` -- returns a totally ordered vector of arguments. i.e.
599599 `[coeff, keyM*valM, keyN*valN...]`
600600"""
601- struct Add{X, T<: Number , D, M} <: Symbolic{X}
601+ struct Add{X<: Number , T<: Number , D, M} <: Symbolic{X}
602602 coeff:: T
603603 dict:: D
604604 sorted_args_cache:: Ref{Any}
@@ -724,7 +724,7 @@ where `coeff` and the vals are `<:Number` and keys are symbolic.
724724- `arguments(::Mul)` -- returns a totally ordered vector of arguments. i.e.
725725 `[coeff, keyM^valM, keyN^valN...]`
726726"""
727- struct Mul{X, T<: Number , D, M} <: Symbolic{X}
727+ struct Mul{X<: Number , T<: Number , D, M} <: Symbolic{X}
728728 coeff:: T
729729 dict:: D
730730 sorted_args_cache:: Ref{Any}
You can’t perform that action at this time.
0 commit comments