home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / biology / gsrc208a.zip / GAUSSVAR.C < prev    next >
C/C++ Source or Header  |  1992-12-15  |  1KB  |  28 lines

  1. #include "copyleft.h"
  2.  
  3. /*
  4.     GEPASI - a simulator of metabolic pathways and other dynamical systems
  5.     Copyright (C) 1989, 1992  Pedro Mendes
  6. */
  7.  
  8. /*************************************/
  9. /*                                   */
  10. /*  variables for Gaussian reduction */
  11. /*                                   */
  12. /*          MICROSOFT C 6.00         */
  13. /*           QuickC/WIN 1.0          */
  14. /*             ULTRIX cc             */
  15. /*              GNU gcc              */
  16. /*                                   */
  17. /*   (include here compilers that    */
  18. /*   compiled GEPASI successfully)   */
  19. /*                                   */
  20. /*************************************/
  21.  
  22. #include "globals.h"                              /* global symbols        */
  23.  
  24. float ml[MAX_MET][MAX_MET];              /* multipliers of gauss reduction */
  25. float lm[MAX_MET][MAX_MET];              /* inverse of ml                  */
  26. float ld[MAX_MET][MAX_MET];              /* metabolite linear dependencies */
  27. float rstoi[MAX_MET][MAX_STEP];          /* reduced stoicheiometric matrix */
  28.