We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb0a118 commit 094a5c1Copy full SHA for 094a5c1
1 file changed
source/running_mode_factory.cpp
@@ -36,6 +36,10 @@ unique_ptr<running_mode_base> running_mode_factory::get_mode(const string& opera
36
cout << "Active learning mode selected" << endl;
37
mode = make_unique<active_learning_mode>();
38
}
39
+ if(operation_mode == "load_sqldb"){
40
+ cout << "Active learning mode selected" << endl;
41
+ mode = make_unique<load_sqldb_mode>();
42
+ }
43
else if(operation_mode == "dfasat"){
44
cout << "SAT solver mode selected" << endl;
45
mode = make_unique<dfasat_mode>();
0 commit comments