Skip to content

Commit

Permalink
remove debug logs (#84)
Browse files Browse the repository at this point in the history
Co-authored-by: Geoffroy Couprie <[email protected]>
  • Loading branch information
KannarFr and Geal authored Mar 20, 2024
1 parent d56a398 commit f28e537
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public ArrayList<Op> getOps() {
public Term evaluate(Map<Long, Term> variables, TemporarySymbolTable symbols) throws Error.Execution {
Deque<Term> stack = new ArrayDeque<Term>(16); //Default value
for(Op op: ops){
System.out.println("evaluating "+op+": "+stack);
op.evaluate(stack,variables, symbols);
}
if(stack.size() == 1){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ public void evaluate(Deque<Term> stack, Map<Long, Term> variables, TemporarySymb
}
break;
case Contains:
System.out.println("calling contains op with left "+left+" and right "+right);
if (left instanceof Term.Set &&
(right instanceof Term.Integer ||
right instanceof Term.Str ||
Expand Down

0 comments on commit f28e537

Please sign in to comment.