Skip to content

Commit

Permalink
removing a TODO that is TODONE
Browse files Browse the repository at this point in the history
  • Loading branch information
aaw committed Jan 18, 2025
1 parent bb29f79 commit 8a638d6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cnfc/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,6 @@ def If(arg1, arg2, arg3=None):
return TupleTernaryExpr(arg1, arg2, arg3)
elif isinstance(arg2, BoolExpr) and isinstance(arg3, BoolExpr):
return BooleanTernaryExpr(arg1, arg2, arg3)
# TODO: support NumExpr?
raise ValueError("Unsupported form of If.")

# TODO: implement canonical_form method for all Exprs so we can cache them correctly.
Expand Down

0 comments on commit 8a638d6

Please sign in to comment.