fortran.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // Template Numerical Toolkit (TNT) for Linear Algebra
  2. //
  3. // BETA VERSION INCOMPLETE AND SUBJECT TO CHANGE
  4. // Please see http://math.nist.gov/tnt for updates
  5. //
  6. // R. Pozo
  7. // Mathematical and Computational Sciences Division
  8. // National Institute of Standards and Technology
  9. // Header file to define C/Fortran conventions (Platform specific)
  10. #ifndef FORTRAN_H
  11. #define FORTRAN_H
  12. // help map between C/C++ data types and Fortran types
  13. typedef int     Fortran_integer;
  14. typedef float   Fortran_float;
  15. typedef double  Fortran_double;
  16. #ifndef TNT_SUBSCRIPT_TYPE
  17. #define TNT_SUBSCRIPT_TYPE Fortran_integer
  18. #endif
  19. #endif
  20. // FORTRAN_H