README 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. This directory contains the source code for GNU ode. Original version
  2. copyright (C) 1982-1994 Nicholas B. Tufillaro <nbt@reed.edu>.
  3. GNU enhancements by Robert S. Maier <rsm@math.arizona.edu>, copyright
  4. (C) 1996, 1997, 1998, 1999, 2005 Free Software Foundation, Inc.
  5. ----------------------------------------------------------------------
  6. ode - numerical solution of differential equations
  7. Source Files:
  8. Makefile.in Template for Makefile
  9. alloca.c alloca() for machines that don't have it
  10. am.c Adams-Moulton with fixed step size
  11. ama.c Same with adaptive step size
  12. eu.c Euler quick-and-dirty method
  13. expr.c Expression evaluator
  14. extern.h External function and variable declarations
  15. float.c FPP setup and trap handler
  16. global.c Global variable definitions
  17. gram.y Bison parser grammar
  18. lex.l Flex scanner rules
  19. main.c Mainline
  20. misc.c I/O, etc.
  21. num.h Constants for the numerical routines
  22. ode.h Miscellaneous declarations and constants
  23. prt.c Print queue management
  24. rk.c Runge-Kutta with fixed step size
  25. rka.c Same with adaptive step size
  26. stperr.c Error handling for adaptive step routines
  27. sym.c Symbol table manager
  28. xmalloc.c Memory management wrappers
  29. yywrap.c Wrapper for our scanner
  30. Other Files:
  31. In this directory:
  32. README This file
  33. INTERNALS A discussion of ode internals
  34. In ../ode-examples:
  35. README A discussion of the example input files
  36. example.x Numerous example ode input files