From a0ae0ca90cd4919da18928d8b2f68b0ed2093cf5 Mon Sep 17 00:00:00 2001 From: Guillaume Bury Date: Thu, 29 Jan 2015 15:16:51 +0100 Subject: [PATCH] Forgot to end a 'TR' --- solver/mcproof.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solver/mcproof.ml b/solver/mcproof.ml index 7f6aabc9..bd440a50 100644 --- a/solver/mcproof.ml +++ b/solver/mcproof.ml @@ -353,11 +353,11 @@ module Make(St : Mcsolver_types.S) = struct Format.fprintf fmt "%a%s" print_clause p.conclusion color (List.length f_args + List.length t_args) name; if f_args <> [] then - Format.fprintf fmt "%a%a%a" St.print_atom (List.hd f_args) + Format.fprintf fmt "%a%a%a" St.print_atom (List.hd f_args) (fun fmt -> List.iter (fun a -> Format.fprintf fmt "%a" St.print_atom a)) (List.tl f_args) (fun fmt -> List.iter (fun v -> Format.fprintf fmt "%a" St.print_semantic_var v)) t_args else - Format.fprintf fmt "%a%a" St.print_semantic_var (List.hd t_args) + Format.fprintf fmt "%a%a" St.print_semantic_var (List.hd t_args) (fun fmt -> List.iter (fun v -> Format.fprintf fmt "%a" St.print_semantic_var v)) (List.tl t_args) in print_dot_rule "BGCOLOR=\"LIGHTBLUE\"" aux () fmt p.conclusion