File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ module M = struct
164164 let syms, cmds = mk_cmds new_syms s.syms s.cmds el in
165165 match cmds with
166166 | [] -> assert false
167- | _hd :: tl ->
168- s.cmds < - tl ;
167+ | _ :: cmds ->
168+ s.cmds < - cmds ;
169169 s.syms < - syms )
170170
171171 let add_decls sym_decls cmds =
@@ -175,8 +175,8 @@ module M = struct
175175 : [> `Sat | `Unknown | `Unsat ] =
176176 let new_syms = get_new_syms ctx in
177177 let syms, cmds = mk_cmds new_syms s.syms s.cmds assumptions in
178- s.cmds < - cmds;
179- s.syms < - syms;
178+ (* s.cmds <- cmds;
179+ s.syms <- syms; *)
180180 let cmds = add_decls syms (List. rev cmds) in
181181 let ftdn_env = FE. init_env s.used_context in
182182 List. iter (FE. process_decl ftdn_env) cmds;
You can’t perform that action at this time.
0 commit comments