home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / biology / gsrc208a.zip / GAUSSW.H < prev    next >
C/C++ Source or Header  |  1992-12-05  |  2KB  |  45 lines

  1. /*
  2.     GEPASI - a simulator of metabolic pathways and other dynamical systems
  3.     Copyright (C) 1989, 1992  Pedro Mendes
  4. */
  5.  
  6. /*************************************/
  7. /*                                   */
  8. /*         GWSIM - Simulation        */
  9. /*        MS-WINDOWS front end       */
  10. /*                                   */
  11. /*          Gauss reduction          */
  12. /*             dialog box            */
  13. /*                                   */
  14. /*           QuickC/WIN 1.0          */
  15. /*                                   */
  16. /*   (include here compilers that    */
  17. /*   compiled GWSIM successfully)    */
  18. /*                                   */
  19. /*************************************/
  20.  
  21.  
  22. extern GLOBALHANDLE    hRSto;                    /* handle to memory block w/ rstoi        */
  23. extern GLOBALHANDLE    hOrd;                    /* handle to memory block w/ ord        */
  24. extern GLOBALHANDLE    hLoo;                    /* handle to memory block w/ loo        */
  25. extern GLOBALHANDLE    hMl;                    /* handle to memory block w/ ml            */
  26. extern GLOBALHANDLE    hLm;                    /* handle to memory block w/ lm            */
  27. extern GLOBALHANDLE    hLD;                    /* handle to memory block w/ ld            */
  28. extern GLOBALHANDLE    hMetn;                    /* handle to memory block w/ metn        */
  29. extern GLOBALHANDLE    hStepn;                    /* handle to memory block w/ stepn        */
  30. extern GLOBALHANDLE    hStepst;                /* handle to memory block w/ stepst        */
  31. extern float        huge *rstoi;            /* pointer to work with rstoi array        */
  32. extern float        huge *ml;                /* pointer to work with ml array        */
  33. extern float        huge *lm;                /* pointer to work with lm array        */
  34. extern float        huge *ld;                /* pointer to work with ld array        */
  35. extern int            huge *ord;                /* pointer to work with ord array        */
  36. extern int            huge *loo;                /* pointer to work with loo array        */
  37. extern char    (huge *metn)[NAME_L];            /* pointer to work with metname array    */
  38. extern char    (huge *stepn)[NAME_L];            /* pointer to work with metname array    */
  39. extern char    (huge *stepst)[256];            /* pointer to work with stepst array    */
  40. extern int ur[MAX_MET];                     /* permut. on metabolites  u -> g         */
  41. extern int uc[MAX_MET];                     /* permutations on steps   u -> g        */
  42.  
  43. int reduce( int swapnames );
  44. void init_moiety( void );
  45.