From a7ee01065acc3522277230bcb31859193033d723 Mon Sep 17 00:00:00 2001 From: "N. Engelhardt" Date: Thu, 24 Mar 2022 10:19:17 +0100 Subject: [PATCH] ignore # comment lines --- backends/smt2/smtbmc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index 7e0d8f571..7527f4105 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -492,7 +492,7 @@ if aimfile is not None: got_state = True for entry in f.read().splitlines(): - if len(entry) == 0 or entry[0] in "bcjfu.": + if len(entry) == 0 or entry[0] in "bcjfu.#": continue if not got_state: -- 2.30.2