home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / biology / gsrc208a.zip / METCVARS.C < prev    next >
C/C++ Source or Header  |  1992-12-05  |  1KB  |  32 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 MCA         */
  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.  
  23. #include "globals.h"                      /* global symbols                 */
  24.  
  25.  double Dxv[MAX_STEP][MAX_MET];           /* variable elasticities          */
  26.  double Duv[MAX_STEP][MAX_MET];           /* parameter elasticities         */
  27.  double DuJ[MAX_STEP][MAX_MET];           /* flux response coefficients     */
  28.  double Gamma[MAX_MET][MAX_STEP];         /* [] control coefficients        */
  29.  double C[MAX_STEP][MAX_STEP];            /* J control coefficients         */
  30.  double aux1[MAX_MET][MAX_MET];           /* auxiliar matrices              */
  31.  double aux2[MAX_MET][MAX_MET];           /* auxiliar matrices              */
  32.