You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be cool to have --line-length option to specify a maximum length of a line and avoid a linebreak after every used predicate.
A default of --line-length=0 would still produce the result as it is produced before but other output could be possible like:
% Check lower and upper bounds via "Sinz counter" on selected varying atoms
index(A, I) :- vary(A),
I = #count { B : vary(B),
B <= A },
not bounds(0, 0).
counter(I, 1) :- index(A, I), bounds(L, U),
L <= I, selected(A).
The text was updated successfully, but these errors were encountered:
It would be cool to have
--line-length
option to specify a maximum length of a line and avoid a linebreak after every used predicate.A default of
--line-length=0
would still produce the result as it is produced before but other output could be possible like:The text was updated successfully, but these errors were encountered: