Browse Source

Added option matrixlib to the generic options of the settings class to define a default value for the used backend. Related to ticket #29.

tempestpy_adaptions
dehnert 12 years ago
parent
commit
c7781f8137
  1. 1
      src/utility/settings.cpp

1
src/utility/settings.cpp

@ -143,6 +143,7 @@ void Settings::initDescriptions()
("test-prctl", bpo::value<std::string>(), "name of prctl file")
("trafile", bpo::value<std::string>()->required(), "name of the .tra file")
("labfile", bpo::value<std::string>()->required(), "name of the .lab file")
("matrixlib", bpo::value<std::string>()->default_value("gmm++"), "name of the matrix library")
;
}

Loading…
Cancel
Save