home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TIERRA40.ZIP / TIERRA / ARGINST.H < prev    next >
C/C++ Source or Header  |  1992-09-09  |  682b  |  23 lines

  1. /* arginst.h   9-9-92  Artificial Life simulator setup routines */
  2. /* Tierra Simulator V4.0: Copyright (c) 1991, 1992 Tom Ray & Virtual Life */
  3. /*
  4. #ifndef lint
  5. static char sccsid[] = "@(#)arginst.h        1.5        7/21/92";
  6. #endif
  7. */
  8.  
  9. #include "license.h"
  10.  
  11. #ifndef ARGINST_H
  12. #define ARGINST_H
  13.  
  14. I32s  GeneBnker = 1; /* turn genebanker on and off */
  15. I32s  RateMut = 2000; /* mutation rate control by raw rate, ("cosmic ray") */
  16. I32s  RateMovMut = 2000; /* mut rate control by raw rate, (copy mutation) */
  17. I32s  RateFlaw = 2000; /* flaw control by raw rate */
  18. I32s  NumCells = 1; /* # of creatures and gaps used to inoculate new soup */
  19.  
  20. InstDef id[INSTNUM];
  21.  
  22. #endif /* ARGINST_H */
  23.