From c7781f813781e00bfffad5d71bb6b63fa5fe6555 Mon Sep 17 00:00:00 2001 From: dehnert Date: Fri, 14 Dec 2012 15:15:21 +0100 Subject: [PATCH] Added option matrixlib to the generic options of the settings class to define a default value for the used backend. Related to ticket #29. --- src/utility/settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utility/settings.cpp b/src/utility/settings.cpp index 1a03cc98d..e22e72eaa 100644 --- a/src/utility/settings.cpp +++ b/src/utility/settings.cpp @@ -143,6 +143,7 @@ void Settings::initDescriptions() ("test-prctl", bpo::value(), "name of prctl file") ("trafile", bpo::value()->required(), "name of the .tra file") ("labfile", bpo::value()->required(), "name of the .lab file") + ("matrixlib", bpo::value()->default_value("gmm++"), "name of the matrix library") ; }