Currently, when creating events where teh affect depends on multiple symbolic variables, you have to do Pre on each, e.g.
@variables X(t)
@parameters Xup
event = [1.0] => [X ~ Pre(X) + Pre(Xup)]
if would be much easier if you could just Pre the entire RHS:
event = [1.0] => [X ~ Pre(X + Xup)]