Some Mathematica results are returned as disjunctions in the form a || b || c , and the internal form is Or[a,b,c].
How do I convert this expression to a list { a, b, c }, for any number of elements in the original disjunction?
I'm a Mathematica beginner, and I can see several ways to do it 'manually', but I've learned enough about Mathematica to know that there is always a simple, clean way to do simple things like this.
Thanks in advance for any help.