Skip to content

Commit 094a5c1

Browse files
committed
Add a new mode: load_sqldb
1 parent fb0a118 commit 094a5c1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

source/running_mode_factory.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ unique_ptr<running_mode_base> running_mode_factory::get_mode(const string& opera
3636
cout << "Active learning mode selected" << endl;
3737
mode = make_unique<active_learning_mode>();
3838
}
39+
if(operation_mode == "load_sqldb"){
40+
cout << "Active learning mode selected" << endl;
41+
mode = make_unique<load_sqldb_mode>();
42+
}
3943
else if(operation_mode == "dfasat"){
4044
cout << "SAT solver mode selected" << endl;
4145
mode = make_unique<dfasat_mode>();

0 commit comments

Comments
 (0)