1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2009-2020 Authors of CryptoMiniSat, see AUTHORS file
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA.
from __future__ import print_function
import sqlite3
import optparse
import time
import os.path
import helper
class Queries (helper.QueryHelper):
def __init__(self, dbfname):
super(Queries, self).__init__(dbfname)
def create_indexes(self):
helper.drop_idxs(self.c)
print("Creating needed indexes...")
t = time.time()
q = """
create index `idxclid-del` on `cl_last_in_solver` (`clauseID`, `conflicts`);
create index `idxclid-del2` on `used_clauses` (`clauseID`);
create index `idxclid-del3` on `used_clauses` (`clauseID`, `used_at`);
create index `idxclid1-2` on `clause_stats` (`clauseID`);
"""
for l in q.split('\n'):
t2 = time.time()
if options.verbose:
print("Creating index: ", l)
self.c.execute(l)
if options.verbose:
print("Index creation T: %-3.2f s" % (time.time() - t2))
print("indexes created T: %-3.2f s" % (time.time() - t))
def check_only_one(self):
only_ones = [
# clause should only be deleted once, since we cleaned this up already
# in clean_update_data.py
{"tbl":"cl_last_in_solver", "elem":"clauseID"},
{"tbl":"clause_stats", "elem":"clauseID"},
{"tbl":"restart", "elem":"restartID"},
{"tbl":"restart_dat_for_cl", "elem":"clauseID"},
]
for only_one in only_ones:
t = time.time()
q = """
select c, {elem}
from (select count() as c, {elem}
from {tbl}
group by {elem}
)
where c > 1
""".format(**only_one)
cursor = self.c.execute(q)
for row in cursor:
if row[0] > 1:
print("ERROR: More than one of {elem} in {tbl} -- clause ID is: {clid}, count is: {cnt}"
.format(**only_one, clid=row[1], cnt=row[0]))
exit(-1)
print("Checked for {tbl} only containing at most one of the same {elem} in {t:2.3f} seconds".
format(**only_one, t=(time.time()-t)))
def check_all_clauses_have_at_most_one_del(self):
t = time.time()
q = """
select f.clid, f.cnt, cl_min, cl_max
from (
select cl_last_in_solver.clauseID as clid, count(cl_last_in_solver.clauseID) as cnt, min(conflicts) as cl_min, max(conflicts) as cl_max
from cl_last_in_solver
group by clauseID) as f
where f.cnt != 1
order by cl_max
"""
cursor = self.c.execute(q)
bad = False
for row in cursor:
bad = True
print("ERROR: Clause deleted more than once! ClauseID: {clid}, times deleted: {num}, first deleted: {first}, last deleted: {last}".format(
clid=row[0], num=row[1], first=row[2], last=row[3]))
if bad:
exit(-1)
print("Checked all clauses have exactly one delete point. T: %-2.3f" % (time.time()-t))
def check_all_clauses_have_N(self):
Ns = [
{"tbl1":"reduceDB", "tbl2":"cl_last_in_solver", "elem":"clauseID"},
]
for n in Ns:
t = time.time()
q = """
select {tbl1}.{elem}
from {tbl1} left join {tbl2}
on {tbl1}.{elem}={tbl2}.{elem}
where {tbl2}.{elem} is NULL
order by {tbl1}.{elem}
""".format(**n)
cursor = self.c.execute(q)
bad = False
for row in cursor:
bad = True
print("ERROR: {elem}={clid} has {tbl1} but no corresponding {tbl2}:".format(
**n, clid=row[0]))
if bad:
exit(-1)
print("Checked all clauses have a %s. T: %-2.3f" % (Ns, time.time()-t))
def check_glue_sizes(self):
if options.slow:
queries = """
create index `idx-check-qual1` on `reduceDB` (`clauseID`);
create index `idx-check-qual2` on `clause_stats` ( `clauseID`);
"""
for l in queries.split('\n'):
self.c.execute(l)
t = time.time()
q = """
select * from `clause_stats`,`reduceDB`
where clause_stats.clauseID = reduceDB.clauseID
and glue > orig_glue"""
cursor = self.c.execute(q)
for row in cursor:
print("ERROR: glue is larger than orig_glue!")
print(row)
exit(-1)
queries = """
drop index `idx-check-qual1`;
drop index `idx-check-qual2`;
"""
for l in queries.split('\n'):
self.c.execute(l)
print("Checked for glue vs orig_glue in %-2.3f seconds" % (time.time()-t))
t = time.time()
q = """select * from `clause_stats` where orig_glue > glue_before_minim"""
cursor = self.c.execute(q)
for row in cursor:
print("ERROR: orig_glue is larger than glue_before_minim!")
print(row)
exit(-1)
print("Checked for orig_glue vs glue_before_minim in %-2.3f seconds" % (time.time()-t))
t = time.time()
q = """select * from `clause_stats` where orig_glue > orig_size"""
cursor = self.c.execute(q)
for row in cursor:
print("ERROR: orig_glue is larger than orig_size!")
print(row)
exit(-1)
print("Checked for orig_glue vs orig_size in %-2.3f seconds" % (time.time()-t))
def check_is_null(self):
is_nulls = [
{"tbl":"restart", "col":"clauseID"},
{"tbl":"restart_data_for_var", "col":"clauseID"}
]
t = time.time()
for is_null in is_nulls:
q = """
select * from {tbl} where {col} is not NULL
""".format(**is_null)
cursor = self.c.execute(q)
bad = False
for row in cursor:
bad = True
print("ERROR: {col} is not null in table {tbl}: {row}".format(**is_null), row=row)
if bad:
exit(-1)
print("Checked that some things are NULL. T: %-2.3f" % (time.time()-t))
def check_incorrect_data_values(self):
incorrect = [
{"table":"clause_stats", "cond":" orig_glue = 0 and orig_size >= 2"},
{"table":"clause_stats", "cond":" orig_glue = 1 and orig_size >= 2"},
{"table":"clause_stats", "cond":" orig_glue > 100000"},
{"table":"reduceDB", "cond":" glue > 100000"},
{"table":"clause_stats", "cond":" glue_before_minim = 0 and orig_size >= 2"},
{"table":"clause_stats", "cond":" glue_before_minim = 1 and orig_size >= 2"},
{"table":"reduceDB", "cond":" act_ranking < 0"},
]
for incorr in incorrect:
t = time.time()
q = """select * from `{table}` where {cond} """.format(**incorr)
cursor = self.c.execute(q)
for row in cursor:
print("ERROR: Following data in `{table}` has {cond}: ".format(**incorr))
print(row)
exit(-1)
print("Checked for %s in %-2.3f seconds" % (q, time.time()-t))
def check_is_decision_unchanged(self):
print("Checking if is_decision hasn't changed while solving...")
q = """
select clstats.clauseID, rdb.is_decision, clstats.is_decision from
reduceDB as rdb
join clause_stats as clstats
on rdb.clauseID = clstats.clauseID
where rdb.is_decision != clstats.is_decision
"""
cursor = self.c.execute(q)
for row in cursor:
clid = int(row[0])
is_dec_rdb = int(row[1])
is_dec_clstats = int(row[2])
print("OOps, for clauseID {clid}, RDB's is_decision is {is_dec_rdb}, while clause_stats's is_decision is {is_dec_clstats}".format(clid=clid, is_dec_rdb=is_dec_rdb, is_dec_clstats=is_dec_clstats))
exit(-1)
print("Check for is_decision change finished, all good, it never changed")
def check_at_least_n(self):
checks = [
{"table":"clause_stats", "cond":" orig_glue >= 2", "n": 100},
{"table":"reduceDB", "cond":" dump_no == 0", "n": 10},
{"table":"reduceDB", "cond":" dump_no == 1", "n": 10}
]
for check in checks:
q = """select count() from `{table}` where {cond}""".format(**check)
cursor = self.c.execute(q)
for row in cursor:
num = int(row[0])
print("Number of {cond} in {table}: {num}".format(num=num, **check))
if num < check["n"]:
print("ERROR: That's too few")
exit(-1)
print("Checked for %s" % q)
def check_non_negative(self):
tables = ["reduceDB", "clause_stats", "reduceDB_common"]
for table in tables:
cols = helper.get_columns(table, options.verbose, self.c)
for col in cols:
t = time.time()
q = """
select * from `%s` where `%s` < 0
""" % (table, col)
cursor = self.c.execute(q)
for row in cursor:
print("ERROR: following data has %s < 0 in table %s: " % (col , table))
print(row)
exit(-1)
print("Checked for %s < 0 in table %s. All are >= 0. T: %-3.2f s" %
(col, table, time.time() - t))
def check_positive(self):
check_zero = [
["glue_before_minim", "clause_stats"],
["orig_glue", "clause_stats"],
["orig_size", "clause_stats"],
["size", "reduceDB"],
["glue", "reduceDB"],
["act_ranking", "reduceDB"], # all ranking starts at 1, not 0
["uip1_ranking", "reduceDB"],
["prop_ranking", "reduceDB"]
]
for col,table in check_zero:
t = time.time()
q = """
select * from `%s` where `%s` <= 0
""" % (table, col)
cursor = self.c.execute(q)
for row in cursor:
print("ERROR: Following data from table %s has %s as non-positive: " % (table, col))
print(row)
exit(-1)
print("Checked for %s in table %s. All are positive T: %-3.2f s" %
(col, table, time.time() - t))
def drop_idxs(self):
helper.drop_idxs(self.c)
if __name__ == "__main__":
usage = "usage: %prog [options] sqlitedb"
parser = optparse.OptionParser(usage=usage)
parser.add_option("--verbose", "-v", action="store_true", default=False,
dest="verbose", help="Print more output")
parser.add_option("--slow", action="store_true", default=False,
dest="slow", help="Do more checks")
(options, args) = parser.parse_args()
if len(args) < 1:
print("ERROR: You must give the sqlite file!")
exit(-1)
with Queries(args[0]) as q:
#q.create_indexes()
q.check_all_clauses_have_at_most_one_del()
q.check_all_clauses_have_N()
q.check_only_one()
q.check_glue_sizes()
q.check_non_negative()
q.check_positive()
q.check_incorrect_data_values()
q.check_at_least_n()
q.check_is_decision_unchanged()
#q.drop_idxs()
print("Done.")
|