Overview
Comment: | Corrected error in creating component list: the kth component of the list is given by the jth component of the original list NOT vice versa. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
43156f551920b1e1517f770480a44646 |
User & Date: | gawthrop@users.sourceforge.net on 1997-08-06 21:43:19 |
Other Links: | branch diff | manifest | tags |
Context
1997-08-07
| ||
16:10:13 | Move the if status .. to the beginning of the main loop. check-in: cf8931efd8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-08-06
| ||
21:43:19 |
Corrected error in creating component list: the kth component of the list is given by the jth component of the original list NOT vice versa. check-in: 43156f5519 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1997-08-05
| ||
08:38:23 | Added n-ports to the argument list in the comment. check-in: 8f2e0a82f3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/rbg2abg.m from [847856fbc0] to [308be301b1].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + + + | function [bonds,components] = rbg2abg(name,rbonds,rstrokes,rcomponents,port_coord,port_name,infofile) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %% Revision 1.14 1997/08/04 14:18:55 peterg % %% If no ports labels at all, just use the default component list. % %% % %% Revision 1.13 1997/08/04 12:50:39 peterg % %% Many bug fixes to the named port version + tied up the logic and % %% supporting comments. % %% % %% Revision 1.12 1997/08/02 19:37:53 peterg % %% Now uses named ports. % %% |
︙ | |||
179 180 181 182 183 184 185 | 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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | - + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + - + + + + + - + + + + + + + + + + + + - + + + | end; end; else % just use that provided by the component unsorted_port_list = port_list; k = n_comp_ports; end; |
︙ |