Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
solver.cpp
Go to the documentation of this file.
1 
14 #include "solver.h"
15 #ifdef USE_PARAMETERS_FACTORY
16 #include "parameters_factory.h"
17 #endif
18 
19 //- parameter entries
20 namespace {
21  void append_entry(Parameters& param)
22  {
23  param.Register_string("solver_type", "NULL");
24  }
25 
26 
27 #ifdef USE_PARAMETERS_FACTORY
28  bool init_param = ParametersFactory::Register("Solver", append_entry);
29 #endif
30 }
31 //- end