home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / biology / gsrc208a.zip / NEWTON.H < prev    next >
Text File  |  1992-12-05  |  804b  |  28 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. /*      steady-state solution by     */
  9. /*      the damped Newton method     */
  10. /*                                   */
  11. /*          MICROSOFT C 6.00         */
  12. /*           QuickC/WIN 1.0          */
  13. /*             ULTRIX cc             */
  14. /*              GNU gcc              */
  15. /*                                   */
  16. /*   (include here compilers that    */
  17. /*   compiled GEPASI successfully)   */
  18. /*                                   */
  19. /*************************************/
  20.  
  21.  
  22. #define N_OK 0
  23. #define N_LMIN 1
  24. #define N_NOCONV 2
  25. #define N_JSING 3
  26.  
  27. int newton( void );
  28.