78 const int maxOptions=2;
80 const char* optionNames [maxOptions];
82 std::stringstream documentation;
84 documentation <<
"linear algebra library (";
87#if defined(HAVE_XPETRA_EPETRA)
88 documentation <<
"Epetra";
92 optionNames[nOptions] =
"Epetra";
95#if defined(HAVE_XPETRA_TPETRA)
96# if defined(HAVE_XPETRA_EPETRA)
97 documentation <<
", ";
99 documentation <<
"Tpetra";
103 optionNames[nOptions] =
"Tpetra";
106 documentation <<
")";
110#if defined(HAVE_XPETRA_TPETRA)
112 const int maxInstOptions=5;
114 const char * instOptionNames [maxInstOptions];
119# if defined(HAVE_MUELU_INST_DOUBLE_INT_INT) || defined(HAVE_TPETRA_INST_DOUBLE) && defined(HAVE_TPETRA_INST_INT_INT)
122 instOptionNames[nInstOptions] =
"DOUBLE_INT_INT";
125# if defined(HAVE_MUELU_INST_DOUBLE_INT_LONGINT) || defined(HAVE_TPETRA_INST_DOUBLE) && defined(HAVE_TPETRA_INST_INT_LONG)
128 instOptionNames[nInstOptions] =
"DOUBLE_INT_LONGINT";
131# if defined(HAVE_MUELU_INST_DOUBLE_INT_LONGLONGINT) || defined(HAVE_TPETRA_INST_DOUBLE) && defined(HAVE_TPETRA_INST_INT_LONG_LONG)
134 instOptionNames[nInstOptions] =
"DOUBLE_INT_LONGLONGINT";
137# if defined(HAVE_MUELU_INST_COMPLEX_INT_INT) || defined(HAVE_TPETRA_INST_COMPLEX_DOUBLE) && defined(HAVE_TPETRA_INST_INT_INT)
140 instOptionNames[nInstOptions] =
"COMPLEX_INT_INT";
143# if defined(HAVE_MUELU_INST_FLOAT_INT_INT) || defined(HAVE_TPETRA_INST_FLOAT) && defined(HAVE_TPETRA_INST_INT_INT)
146 instOptionNames[nInstOptions] =
"FLOAT_INT_INT";
149 std::stringstream instDocumentation;
150 instDocumentation <<
"choice of instantiation";