Skip to content

Commit

Permalink
bug[next]: Improve ITIR Pretty Printer (#1509)
Browse files Browse the repository at this point in the history
There were some operations missing in the ITIR pretty printed.
  • Loading branch information
tehrengruber committed Mar 21, 2024
1 parent a738dff commit 5d1bf29
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gt4py/next/iterator/pretty_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
"divides": "/",
"eq": "==",
"less": "<",
"less_equal": "<=",
"greater": ">",
"greater_equal": ">=",
"and_": "∧",
"or_": "∨", # noqa: RUF001 [ambiguous-unicode-character-string]
}
Expand All @@ -55,7 +57,9 @@
"and_": 3,
"eq": 4,
"less": 4,
"less_equal": 4,
"greater": 4,
"greater_equal": 4,
"plus": 5,
"minus": 5,
"multiplies": 6,
Expand Down

0 comments on commit 5d1bf29

Please sign in to comment.