Overview
Comment: | Now uses number of components with complete causality to measure progress of algorithm -- Done. This replaces bond count -- done. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d7c2bf278ac5372c8a5981ce69a62cde |
User & Date: | gawthrop@users.sourceforge.net on 1998-12-03 14:55:40 |
Other Links: | branch diff | manifest | tags |
Context
1998-12-03
| ||
16:21:27 | Initial revision check-in: f9dda3faa0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:55:40 |
Now uses number of components with complete causality to measure progress of algorithm -- Done. This replaces bond count -- done. check-in: d7c2bf278a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1998-11-30
| ||
10:47:53 | Added extra a_a and a_b aliases check-in: cc40783ea6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/abg2cbg.m from [d2cff795a1] to [bdedc69a24].
︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + + + | # [bonds,status] = abg2cbg(system_name, system_type, full_name, port_bonds, infofile) # ############################################################### # ## Version control history # ############################################################### # ## $Id$ # ## $Log$ # ## Revision 1.41 1998/11/20 10:52:28 peterg # ## Copies port bonds if the port bonds ARE set # ## -- replaces Copies port bonds if the component bonds are NOT set # ## # ## Revision 1.40 1998/09/02 11:47:09 peterg # ## Now uses explicit ordered list of ports instead of port.index. # ## Note that subsystems are still treated in arbitrary order. # ## # ## Revision 1.39 1998/08/25 20:06:16 peterg # ## Writes flipped port info # ## |
︙ | |||
306 307 308 309 310 311 312 | 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 | - - + + + + + + + + - - - + + + + - - + + | n_port_bonds=0; endif # Causality indicator total = 2*n_bonds; done = sum(sum(abs(ABG.bonds)))/total*100; |
︙ | |||
399 400 401 402 403 404 405 | 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | - + + + + + + + + | comp_bonds_out = comp_bonds end; ABG.bonds(bond_list,:) = comp_bonds;# Update the full bonds list eval(["ABG_field.",name,".status = subsystem.status;"]); end; end; |
︙ | |||
429 430 431 432 433 434 435 | 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | - + - + | # endif; # Print final causality # final_done = (sum(status==zeros(n_components,1))/n_components)*100; if at_top_level mtt_info(sprintf("Final causality of %s is %3.0f%s complete.", ... |
︙ |