@@ -115,8 +115,8 @@ ArithLogic::ArithLogic(Logic_t type)
115115 sym_Real_MINUS(declareFun_NoScoping_LeftAssoc(tk_real_minus, sort_REAL, {sort_REAL, sort_REAL})),
116116 sym_Real_PLUS(declareFun_Commutative_NoScoping_LeftAssoc(tk_real_plus, sort_REAL, {sort_REAL, sort_REAL})),
117117 sym_Real_TIMES(declareFun_Commutative_NoScoping_LeftAssoc(tk_real_times, sort_REAL, {sort_REAL, sort_REAL})),
118- sym_Real_TIMES_LIN(declareFun_Multiplication_LinNonlin (tk_real_times, sort_REAL, {sort_REAL, sort_REAL})),
119- sym_Real_TIMES_NONLIN(declareFun_Multiplication_LinNonlin (tk_real_times, sort_REAL, {sort_REAL, sort_REAL})),
118+ sym_Real_TIMES_LIN(declareFunMultiplicationLinNonlin (tk_real_times, sort_REAL, {sort_REAL, sort_REAL})),
119+ sym_Real_TIMES_NONLIN(declareFunMultiplicationLinNonlin (tk_real_times, sort_REAL, {sort_REAL, sort_REAL})),
120120 sym_Real_DIV(declareFun_NoScoping_LeftAssoc(tk_real_div, sort_REAL, {sort_REAL, sort_REAL})),
121121 sym_Real_EQ(sortToEquality[sort_REAL]),
122122 sym_Real_LEQ(declareFun_NoScoping_Chainable(tk_real_leq, sort_BOOL, {sort_REAL, sort_REAL})),
@@ -137,8 +137,8 @@ ArithLogic::ArithLogic(Logic_t type)
137137 sym_Int_MINUS(declareFun_NoScoping_LeftAssoc(tk_int_minus, sort_INT, {sort_INT, sort_INT})),
138138 sym_Int_PLUS(declareFun_Commutative_NoScoping_LeftAssoc(tk_int_plus, sort_INT, {sort_INT, sort_INT})),
139139 sym_Int_TIMES(declareFun_Commutative_NoScoping_LeftAssoc(tk_int_times, sort_INT, {sort_INT, sort_INT})),
140- sym_Int_TIMES_LIN(declareFun_Multiplication_LinNonlin (tk_int_times, sort_INT, {sort_INT, sort_INT})),
141- sym_Int_TIMES_NONLIN(declareFun_Multiplication_LinNonlin (tk_int_times, sort_INT, {sort_INT, sort_INT})),
140+ sym_Int_TIMES_LIN(declareFunMultiplicationLinNonlin (tk_int_times, sort_INT, {sort_INT, sort_INT})),
141+ sym_Int_TIMES_NONLIN(declareFunMultiplicationLinNonlin (tk_int_times, sort_INT, {sort_INT, sort_INT})),
142142 sym_Int_DIV(declareFun_NoScoping_LeftAssoc(tk_int_div, sort_INT, {sort_INT, sort_INT})),
143143 sym_Int_MOD(declareFun_NoScoping(tk_int_mod, sort_INT, {sort_INT, sort_INT})),
144144 sym_Int_EQ(sortToEquality[sort_INT]),
0 commit comments