@@ -921,7 +921,7 @@ void SQLiteStats::reduceDB(
921
921
922
922
void SQLiteStats::init_clause_stats_STMT ()
923
923
{
924
- const size_t numElems = 48 ;
924
+ const size_t numElems = 49 ;
925
925
926
926
std::stringstream ss;
927
927
ss << " insert into `clauseStats`"
@@ -945,7 +945,6 @@ void SQLiteStats::init_clause_stats_STMT()
945
945
<< " `decision_level`,"
946
946
<< " `trail_depth_level`,"
947
947
<< " `cur_restart_type` ,"
948
- << " `cur_confl_in_restart` ,"
949
948
950
949
<< " `atedecents_binIrred`,"
951
950
<< " `atedecents_binRed`,"
@@ -1018,7 +1017,6 @@ void SQLiteStats::dump_clause_stats(
1018
1017
, size_t trail_depth
1019
1018
, uint64_t conflicts_this_restart
1020
1019
, const std::string& restart_type
1021
- , const SearchStats& stats
1022
1020
, const SearchHist& hist
1023
1021
) {
1024
1022
uint32_t num_overlap_literals = antec_data.sum_size ()-(antec_data.num ()-1 )-size;
@@ -1047,7 +1045,6 @@ void SQLiteStats::dump_clause_stats(
1047
1045
sqlite3_bind_int64 (stmt_clause_stats, bindAt++, decision_level);
1048
1046
sqlite3_bind_int64 (stmt_clause_stats, bindAt++, trail_depth);
1049
1047
sqlite3_bind_text (stmt_clause_stats, bindAt++, restart_type.c_str (), -1 , NULL );
1050
- sqlite3_bind_int64 (stmt_clause_stats, bindAt++, stats.conflStats .numConflicts );
1051
1048
1052
1049
sqlite3_bind_int (stmt_clause_stats, bindAt++, antec_data.binIrred );
1053
1050
sqlite3_bind_int (stmt_clause_stats, bindAt++, antec_data.binRed );
0 commit comments