When I enter an logical expression e.g.
( P && Q && R ) || ( Q && R && S )
I get lots of lovely info. However, I've discovered there is a limit to the length of input e.g.
( P && Q && R && S ) || ( P && Q && R && ~S ) || ( P && Q && ~R && S ) || ( P && Q && ~R && ~S ) || ( P && ~Q && R && S ) || ( P && ~Q && R && ~S ) || ( P && ~Q && ~R && S ) || ( P && ~Q && ~R && ~S )
results in a failure message, "Input Too Long! Upload as data using Data input first."
When I try the data input route, I get another failure message, ""No structured data detected; performing a textual analysis instead."
How do I structure or otherwise mark my input as being a single logical expression?