autoNetModel.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (C) 1998 by USC/ISI
  3. # All rights reserved.                                            
  4. #                                                                
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation, advertising
  8. # materials, and other materials related to such distribution and use
  9. # acknowledge that the software was developed by the University of
  10. # Southern California, Information Sciences Institute.  The name of the
  11. # University may not be used to endorse or promote products derived from
  12. # this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  14. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  15. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. # $Header: /cvsroot/nsnam/nam-1/tcl/autoNetModel.tcl,v 1.4 2001/01/08 22:51:41 mehringe Exp $ 
  17. # initialize layout constant
  18. NetworkModel/Auto set RANDOM_SEED_ 1
  19. NetworkModel/Auto set KCa_ 0.15
  20. NetworkModel/Auto set KCr_ 0.75
  21. NetworkModel/Auto set Recalc_ 1
  22. NetworkModel/Auto set AUTO_ITERATIONS_ 10
  23. NetworkModel/Auto set INCR_ITERATIONS_ 10
  24. NetworkModel/Auto instproc init { animator tracefile } {
  25.   eval $self next $animator $tracefile
  26.   NetworkModel/Auto instvar INCR_ITERATIONS_ KCa_ KCr_
  27.   $animator set-layout-params $INCR_ITERATIONS_ $KCa_ $KCr_
  28. }
  29. NetworkModel/Auto instproc do_relayout { Iter Kca Kcr Recalc } {
  30.   $self instvar INCR_ITERATIONS_ KCa_ KCr_ Recalc_
  31.   set KCa_ $Kca
  32.   set KCr_ $Kcr
  33.   set Recalc_ $Recalc
  34.   set INCR_ITERATIONS_ $Iter
  35.   $self relayout
  36. }