sidekick/util/parselog.mli
2014-11-17 17:20:20 +01:00

15 lines
442 B
OCaml

(*
MSAT is free software, using the Apache license, see file LICENSE
Copyright 2014 Guillaume Bury
Copyright 2014 Simon Cruanes
*)
val complete : string -> string -> string list
val commit_info : string -> string
val last_commit : unit -> string
type status = Sat | Unsat | Timeout | Spaceout
type pb = { pb_name : string; pb_st : status; pb_time : float; }
val parse_raw : string -> pb
val parse_commit : string -> (string, pb) Hashtbl.t