10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997,1998,1999
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.207 1999/04/02 07:17:37 peterg
## Upped version to 3.6 -- the new implicit solver with switches
##
## Revision 1.206 1999/04/02 06:28:54 peterg
## New implicit method - solves numerical prob with ISW
##
## Revision 1.205 1999/03/15 23:27:43 peterg
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright (c) P.J.Gawthrop, 1989, 1990, 1991, 1993, 1994, 1995, 1996, 1997,1998,1999
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.208 1999/07/20 23:43:05 peterg
## V 3.8 ( to Eric)
##
## Revision 1.207 1999/04/02 07:17:37 peterg
## Upped version to 3.6 -- the new implicit solver with switches
##
## Revision 1.206 1999/04/02 06:28:54 peterg
## New implicit method - solves numerical prob with ISW
##
## Revision 1.205 1999/03/15 23:27:43 peterg
|
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
|
###############################################################
#Check $MTTPATH has been set
mtt_check_var "$MTTPATH" "MTTPATH"
#Version
version='3.8'
# MTT recursion level is zero unless explicitly set
level=0
#Computation mode is octave by default
computation=octave
|
|
|
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
|
###############################################################
#Check $MTTPATH has been set
mtt_check_var "$MTTPATH" "MTTPATH"
#Version
version='3.8++'
# MTT recursion level is zero unless explicitly set
level=0
#Computation mode is octave by default
computation=octave
|