/usr/include/trilinos/TrilinosCouplings_Version.h is in libtrilinos-trilinoscouplings-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 | #ifndef TRILINOSCOUPLINGS_VERSION_H
#define TRILINOSCOUPLINGS_VERSION_H
#include "TrilinosCouplings_ConfigDefs.h"
#ifndef TRILINOS_VERSION_H
# define TRILINOS_VERSION_H
# define TRILINOS_MAJOR_VERSION 12
# define TRILINOS_MAJOR_MINOR_VERSION 120402
# define TRILINOS_VERSION_STRING 12S
#elif ( TRILINOS_MAJOR_VERSION != 12 ) \
|| ( TRILINOS_MAJOR_MINOR_VERSION != 120402 )
// don't know what to do. should not happen
# warning "trilinos version mismatch."
#endif /* TRILINOS_VERSION_H */
string TrilinosCouplings_Version() {
return("TrilinosCouplings in Trilinos " TRILINOS_VERSION_STRING);
}
#endif /* TRILINOSCOUPLINGS_VERSION_H */
|