Dear all,
Is there a convenient, pre-made operation in UFL to expand products? So, if I have an UFL expression
inner(e,f+g)
is there a build-in function to turn this into
inner(e,f) + inner(e,g)
I noticed some of this functionality exists for expanding derivatives and compounds, but what about the simple distributive property for multiplication and addition?