Skip to content

Commit 37e5afe

Browse files
Separate pointer/function substitutions in solver
We make the solver do two passes on the equations: there is now one pass just for pointer and array associations before substituting function applications.
1 parent db13dc9 commit 37e5afe

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/solvers/refinement/string_constraint_generator_main.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -563,10 +563,6 @@ exprt string_constraint_generatort::add_axioms_for_function_application(
563563
res=add_axioms_for_intern(expr);
564564
else if(id==ID_cprover_string_format_func)
565565
res=add_axioms_for_format(expr);
566-
else if(id == ID_cprover_associate_array_to_pointer_func)
567-
res = associate_array_to_pointer(expr);
568-
else if(id == ID_cprover_associate_length_to_array_func)
569-
res = associate_length_to_array(expr);
570566
else if(id == ID_cprover_string_constrain_characters_func)
571567
res = add_axioms_for_constrain_characters(expr);
572568
else

0 commit comments

Comments
 (0)