Skip to content

Commit

Permalink
adds missing cases of kind_to_string
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-irfan committed May 24, 2023
1 parent ff95410 commit 36cee66
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/mcsat/tracing.c
Expand Up @@ -56,6 +56,12 @@ const char* kind_to_string(term_kind_t t) {
return "UNINTERPRETED_TERM";
case UPDATE_TERM:
return "UPDATE_TERM";
case ARITH_RDIV:
return "ARITH_RDIV";
case ARITH_IDIV:
return "ARITH_IDIV";
case ARITH_MOD:
return "ARITH_MOD";
default:
assert(false);
return "UNKNOWN_TERM";
Expand Down

0 comments on commit 36cee66

Please sign in to comment.