Overview
Comment: | Files marked by update as out of sync |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
af29f9cfa19d9f86e690925d216868cb |
User & Date: | gawthrop@users.sourceforge.net on 2002-05-07 10:13:48 |
Other Links: | branch diff | manifest | tags |
Context
2002-05-07
| ||
12:04:49 | Upgraded to return Nx3 matrix of indices check-in: 9ead2455dc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:13:48 | Files marked by update as out of sync check-in: af29f9cfa1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2002-05-02
| ||
20:12:45 |
Added -Wl,--rpath to MTT_CXXLIBS. Sets the runtime linker path so that the sys-admin does not have to ldconfig the octave directory for -cc to work. check-in: c2197fc425 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mttrc.csh from [689359fe62] to [585da1cd36].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | - + + + + + + + + + + + + | #!/bin/csh |
︙ | |||
110 111 112 113 114 115 116 | 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | - + | # Setup the paths setenv MTTPATH $MTT_BASE/bin setenv MTT_LIB $MTT_BASE/lib setenv MTT_DOC $MTT_BASE/doc setenv MTT_CC $MTT_BASE/cc |
︙ | |||
142 143 144 145 146 147 148 | 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | - + | -startgridmode 2 \ -pheight 21 \ -pwidth 30 \ -library_dir $MTT_LIB/xfig/\ " # Setup ps viewer |
︙ | |||
168 169 170 171 172 173 174 | 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | - - - - - - - - + - - + + - - - + - - + | setenv MKOCTFILE mkoctfile # ode2odes.exe stuff # local system set PLAT="i686-pc-linux-gnu" |
Modified mttroot/mtt/bin/trans/cse2smx_lang from [840ce4dc3c] to [cb75626e58].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### |
︙ |
Modified mttroot/mtt/bin/trans/octave_ode2odes from [6a41dad2b5] to [c8132b66e7].
︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | + + + - + | # Copyright (c) P.J.Gawthrop 1999 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 2001/03/30 15:13:58 gawthrop ## Rationalised simulation modes to each return mtt_data ## ## Revision 1.3 2000/05/19 17:47:56 peterg ## Agument to state ## ## Revision 1.2 2000/05/11 13:43:14 peterg ## No change ## ## Revision 1.1 1999/03/15 23:27:16 peterg ## Initial revision ## ############################################################### echo Creating $1_odes.dat2 $MATRIX <<EOF >octave_ode2odes.log 2>mtt_error.txt ## Set up the simulation parameters par = $1_numpar; x_0 = $1_state(par); |
Modified mttroot/mtt/bin/xmtt from [3cdf36096b] to [026c569d97].
︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | + + + + + + + + + + + + - - + + + + + - - - - - + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - + - + | # Copyright (c) P.J.Gawthrop, 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.5 2000/09/14 07:50:08 peterg ## *** empty log message *** ## ## Revision 1.4 1999/10/19 00:34:10 peterg ## *** empty log message *** ## ## Revision 1.3 1999/08/18 06:17:55 peterg ## Modular form ## ## Revision 1.2 1999/03/09 00:03:55 peterg ## Major revisions for release 3.5 ## ## Revision 1.1 1998/10/20 08:15:17 peterg ## Initial revision ## ############################################################### #Basic paths dotfile="$HOME/.mtt" xdotfile="${dotfile}/xmtt" repfile="${xdotfile}/reps" exfile="${xdotfile}/examples" menufile=".xmtt_menu" #Look for a command line argument while [ -n "`echo $1 | grep '^-'`" ]; do case $1 in --help|-h ) echo "usage:" |