/usr/include/trilinos/MLAPI_Defaults.h is in libtrilinos-ml-dev 12.4.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #ifndef MLAPI_DEFAULTS_H
#define MLAPI_DEFAULTS_H
/*!
\file MLAPI_Defaults.h
\brief Function to set default values in a parameter list.
\author Marzio Sala, D-INFK/ETHZ.
\date Last updated on Mar-06.
*/
/* ******************************************************************** */
/* See the file COPYRIGHT for a complete copyright notice, contact */
/* person and disclaimer. */
/* ******************************************************************** */
#include "MLAPI_Error.h"
#include "Teuchos_ParameterList.hpp"
namespace MLAPI
{
// ======================================================================
//! Sets default values in input \c List.
// ======================================================================
void SetDefaults(Teuchos::ParameterList& List);
} // namespace MLAPI
#endif // MLAPI_DEFAULTS_H
|