Serial filter(...)
expr: all filters but the first are missing in the generated code
#90
Labels
filter(...)
expr: all filters but the first are missing in the generated code
#90
In some cases, serial
filter(...)
expressions break the filter semantics.Example: Echtzeitsysteme/gips-tests#31
Problem (if I understand it correctly):
If the first filter expression (in this case
->filter(m | m.nodes().vnode.resourceDemand == 0)
) filters nothing out, i.e., the result should not be an empty set, the secondfilter(...)
operation could not be triggered and, therefore, thecount()
does not evaluate to 0?The text was updated successfully, but these errors were encountered: