little optimizations motivated by profiling...
[model-checker.git] / main.cc
diff --git a/main.cc b/main.cc
index 6b9cb9054e7819496c9a9c6f8d652a45d6754abd..b6e41523c0084d3699c5083c7c5ce4ca3cbb94e6 100644 (file)
--- a/main.cc
+++ b/main.cc
@@ -22,7 +22,7 @@ static void param_defaults(struct model_params *params)
        params->bound = 0;
        params->maxfuturevalues = 0;
        params->expireslop = 10;
-       params->verbose = 0;
+       params->verbose = !!DBG_ENABLED();
 }
 
 static void print_usage(struct model_params *params)
@@ -146,5 +146,5 @@ int main(int argc, char **argv)
        redirect_output();
 
        /* Let's jump in quickly and start running stuff */
-       initSnapshotLibrary(10000, 1024, 1024, 4000, &model_main);
+       snapshot_system_init(10000, 1024, 1024, 4000, &model_main);
 }