You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LAPACK_version.f 920 B

12345678910111213141516171819202122232425262728293031323334353637
  1. *> \brief \b LAPACK_VERSION
  2. *
  3. * =========== DOCUMENTATION ===========
  4. *
  5. * Online html documentation available at
  6. * http://www.netlib.org/lapack/explore-html/
  7. *
  8. * Definition:
  9. * ===========
  10. *
  11. * PROGRAM LAPACK_VERSION
  12. *
  13. * Authors:
  14. * ========
  15. *
  16. *> \author Univ. of Tennessee
  17. *> \author Univ. of California Berkeley
  18. *> \author Univ. of Colorado Denver
  19. *> \author NAG Ltd.
  20. *
  21. *> \date November 2011
  22. *
  23. *> \ingroup auxOTHERauxiliary
  24. *
  25. * ===================================================================== PROGRAM LAPACK_VERSION
  26. *
  27. * -- LAPACK auxiliary routine (version 3.4.0) --
  28. * -- LAPACK is a software package provided by Univ. of Tennessee, --
  29. * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
  30. * November 2011
  31. *
  32. INTEGER MAJOR, MINOR, PATCH
  33. *
  34. CALL ILAVER ( MAJOR,MINOR, PATCH )
  35. WRITE(*,*) "LAPACK ",MAJOR,".",MINOR,".",PATCH
  36. *
  37. END