Skip to content

Commit 52119c8

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 86131ce commit 52119c8

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
@@ -555,10 +555,6 @@ exprt string_constraint_generatort::add_axioms_for_function_application(
555555
res=add_axioms_for_intern(expr);
556556
else if(id==ID_cprover_string_format_func)
557557
res=add_axioms_for_format(expr);
558-
else if(id == ID_cprover_associate_array_to_pointer_func)
559-
res = associate_array_to_pointer(expr);
560-
else if(id == ID_cprover_associate_length_to_array_func)
561-
res = associate_length_to_array(expr);
562558
else if(id == ID_cprover_string_constrain_characters_func)
563559
res = add_axioms_for_constrain_characters(expr);
564560
else

0 commit comments

Comments
 (0)