Skip to content

Commit 6af30c4

Browse files
authored
Fix substitution signature (#242)
1 parent 0a75624 commit 6af30c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/substitution.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export subs
33

44
# TODO Vararg{<:...} -> Vararg{...}
55
const Substitution = Pair{<:AbstractVariable}
6-
const MultiSubstitution{N} = Pair{<:Tuple{Vararg{AbstractVariable, N}}, <:Tuple{Vararg{<:Any, N}}}
6+
const MultiSubstitution{N} = Pair{<:Tuple{Vararg{AbstractVariable, N}}, <:Tuple{Vararg{Any, N}}}
77
const MultiVectorSubstitution = Pair{<:Tuple{Vararg{AbstractVariable}}, <:AbstractVector}
88

99
# When the variables are promoted to be in the same vector they could be promoted into a monomial

0 commit comments

Comments
 (0)