Skip to content

Commit

Permalink
expose uninterpreted op versions for ad-hoc parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed May 7, 2020
1 parent e459cf4 commit 2e714fc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ast/arith_decl_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,10 @@ void arith_decl_plugin::get_op_names(svector<builtin_name>& op_names, symbol con
op_names.push_back(builtin_name("atanh", OP_ATANH));
op_names.push_back(builtin_name("pi", OP_PI));
op_names.push_back(builtin_name("euler", OP_E));
op_names.push_back(builtin_name("/0",OP_DIV0));
op_names.push_back(builtin_name("div0",OP_IDIV0));
op_names.push_back(builtin_name("rem0",OP_REM0));
op_names.push_back(builtin_name("mod0",OP_MOD0));
}
}

Expand Down

0 comments on commit 2e714fc

Please sign in to comment.