File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ function getVariables(
163163 " tags kwarg is deprecated, use kwarg `tagsFilter = !isdisjoint(tags)` instead" , # v0.28
164164 :getVariables ,
165165 )
166- filterDFG! (variables, ! isdisjoint (tags), getTags)
166+ filterDFG! (variables, x -> ! isdisjoint (x, tags), getTags)
167167 end
168168 if ! isnothing (solvable)
169169 # TODO review. just one solvableFilter or keep solvable as well.
@@ -244,7 +244,7 @@ function getFactors(
244244 " tags kwarg is deprecated, use kwarg `tagsFilter = !isdisjoint(tags)` instead" , # v0.28
245245 :getFactors ,
246246 )
247- filterDFG! (factors, ! isdisjoint (tags), getTags)
247+ filterDFG! (factors, x -> ! isdisjoint (x, tags), getTags)
248248 end
249249 if ! isnothing (solvable)
250250 # TODO review. just one solvableFilter or keep solvable as well.
You can’t perform that action at this time.
0 commit comments