Minor cleanup.

This commit is contained in:
Simon Forman
2019-07-21 18:48:11 -07:00
parent 66d8a3be47
commit df94c8feed
2 changed files with 17 additions and 10 deletions
-1
View File
@@ -220,7 +220,6 @@ combo(branch, [T, F, Expr|S], S, Ei, Eo) :-
(append(T, Ei, Eo) ; append(F, Ei, Eo))
).
combo(loop, [_, false|S], S, E, E ).
combo(loop, [B, true|S], S, Ei, Eo) :- append(B, [B, loop|Ei], Eo).