ilaver.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* ilaver.f -- translated by f2c (version 20061008).
  2. You must link the resulting object file with libf2c:
  3. on Microsoft Windows system, link with libf2c.lib;
  4. on Linux or Unix systems, link with .../path/to/libf2c.a -lm
  5. or, if you install libf2c.a in a standard place, with -lf2c -lm
  6. -- in that order, at the end of the command line, as in
  7. cc *.o -lf2c -lm
  8. Source for libf2c is in /netlib/f2c/libf2c.zip, e.g.,
  9. http://www.netlib.org/f2c/libf2c.zip
  10. */
  11. #include "f2c.h"
  12. #include "blaswrap.h"
  13. /* Subroutine */ int ilaver_(integer *vers_major__, integer *vers_minor__,
  14. integer *vers_patch__)
  15. {
  16. /* -- LAPACK routine (version 3.2) -- */
  17. /* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd.. */
  18. /* January 2007 */
  19. /* .. */
  20. /* Purpose */
  21. /* ======= */
  22. /* This subroutine return the Lapack version */
  23. /* Arguments */
  24. /* ========= */
  25. /* VERS_MAJOR (output) INTEGER */
  26. /* return the lapack major version */
  27. /* VERS_MINOR (output) INTEGER */
  28. /* return the lapack minor version from the major version */
  29. /* VERS_PATCH (output) INTEGER */
  30. /* return the lapack patch version from the minor version */
  31. /* ===================================================================== */
  32. /* ===================================================================== */
  33. *vers_major__ = 3;
  34. *vers_minor__ = 1;
  35. *vers_patch__ = 1;
  36. /* ===================================================================== */
  37. return 0;
  38. } /* ilaver_ */