00001 /* ilaver.f -- translated by f2c (version 20061008). 00002 You must link the resulting object file with libf2c: 00003 on Microsoft Windows system, link with libf2c.lib; 00004 on Linux or Unix systems, link with .../path/to/libf2c.a -lm 00005 or, if you install libf2c.a in a standard place, with -lf2c -lm 00006 -- in that order, at the end of the command line, as in 00007 cc *.o -lf2c -lm 00008 Source for libf2c is in /netlib/f2c/libf2c.zip, e.g., 00009 00010 http://www.netlib.org/f2c/libf2c.zip 00011 */ 00012 00013 #include "f2c.h" 00014 #include "blaswrap.h" 00015 00016 /* Subroutine */ int ilaver_(integer *vers_major__, integer *vers_minor__, 00017 integer *vers_patch__) 00018 { 00019 00020 /* -- LAPACK routine (version 3.2) -- */ 00021 /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */ 00022 /* January 2007 */ 00023 /* .. */ 00024 00025 /* Purpose */ 00026 /* ======= */ 00027 00028 /* This subroutine return the Lapack version */ 00029 00030 /* Arguments */ 00031 /* ========= */ 00032 /* VERS_MAJOR (output) INTEGER */ 00033 /* return the lapack major version */ 00034 /* VERS_MINOR (output) INTEGER */ 00035 /* return the lapack minor version from the major version */ 00036 /* VERS_PATCH (output) INTEGER */ 00037 /* return the lapack patch version from the minor version */ 00038 /* ===================================================================== */ 00039 00040 /* ===================================================================== */ 00041 *vers_major__ = 3; 00042 *vers_minor__ = 1; 00043 *vers_patch__ = 1; 00044 /* ===================================================================== */ 00045 00046 return 0; 00047 } /* ilaver_ */