      SUBROUTINE MULCON (FY,DFY,BC,IVPSOL,N,M,T,X,XW,TAU,TAUMIN,TAUMAX,
     &   UMAX,EPS,INFO,RWORK,LRWORK,IWORK,LIWORK)
C*    Begin Prologue MULCON
      IMPLICIT DOUBLE PRECISION(A-H,O-Z)
      DIMENSION RWORK(LRWORK),IWORK(LIWORK),T(M),X(N,M),XW(N,M),INFO(9)
      EXTERNAL FY,DFY,BC,IVPSOL
C
C---------------------------------------------------------------------
C
C*  Title
C
C     (Mul)tiple shooting for parameter dependent two-point boundary 
C     value problems with (Con)tinuation method.
C
C*  Written by        P. Deuflhard, P. Kunkel
C*  Purpose           Solution of parameter dependent two-point boundary 
C                     value problems.
C*  Method            Numerical pathfollowing with automatic steplength 
C                     control
C*  Category          I1b2b - Differential and integral equations
C                     Parameter-dependent general BVP's
C*  Keywords          Numerical pathfollowing, Homotopy Method,
C                     Nonlinear boundary value problems,
C                     Multiple shooting
C*  Version           0.9
C*  Revision          July 1985
C*  Latest Change     January 1991
C*  Library           CodeLib
C*  Code              Fortran 77, Double Precision
C*  Environment       Standard Fortran 77 environment on PC's,
C                     workstations and hosts.
C*  Copyright     (c) Konrad-Zuse-Zentrum fuer
C                     Informationstechnik Berlin (ZIB)
C                     Takustrasse 7, D-14195 Berlin-Dahlem
C                     phone : + 49/30/84185-0
C                     fax   : + 49/30/84185-125
C*  Contact           Lutz Weimann
C                     ZIB, Division Scientific Computing, 
C                          Department Scientific Software
C                     phone : + 49/30/84185-185
C                     fax   : + 49/30/84185-107
C                     e-mail: weimann@zib.de

The distribution contains the following files:

  mulcon.f         the solver
  mulcon.nrm       output of the example
  linalg_mulcon.f  linear algebraic routines (deccon,solcon)
  main_mulcon.f    main example program
  makefile         makefile for compilation
  readme           this file
  zibconst.f       machine dependant constants
  zibsec.f         machine dependant timing routine
