49 const std::string& paramName)
52 typedef Teuchos::StringToIntegralParameterEntryValidator<enum_type>
55 const std::string docString =
"Tpetra::CombineMode: rule for combining "
56 "entries that overlap across processes, when redistributing data via a "
57 "Tpetra::Import or Tpetra::Export";
58 const std::string defaultVal =
"ADD";
59 const bool caseSensitive =
false;
61 const Teuchos::Array<std::string>::size_type numParams = 6;
62 Teuchos::Array<std::string> strs (numParams);
63 Teuchos::Array<std::string> docs (numParams);
64 Teuchos::Array<enum_type> vals (numParams);
71 strs[5] =
"ADD_ASSIGN";
73 docs[0] =
"Sum new values";
74 docs[1] =
"Insert new values that don't currently exist";
75 docs[2] =
"Replace existing values with new values";
76 docs[3] =
"Replace old value with maximum of magnitudes of old and new values";
77 docs[4] =
"Replace old values with zero";
78 docs[5] =
"Do addition assignment (+=) of new values into existing value; "
79 "may not be supported by all classes";
88 plist.set (paramName, defaultVal, docString,
89 Teuchos::rcp (
new validator_type (strs (), docs (), vals (),
90 defaultVal, caseSensitive)));