home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / answers / ai-faq / genetic / part2 < prev    next >
Internet Message Format  |  1993-12-27  |  71KB

  1. Path: bloom-beacon.mit.edu!gatech!europa.eng.gtefsd.com!uunet!Germany.EU.net!Informatik.Uni-Dortmund.DE!home!heitkoet
  2. From: joke@ls11.informatik.uni-dortmund.de (Joerg Heitkoetter)
  3. Newsgroups: comp.ai.genetic,comp.answers,news.answers
  4. Subject: FAQ: comp.ai.genetic part 2/3 (A Guide to Frequently Asked Questions)
  5. Supersedes: <part2_753815849@lusty.informatik.uni-dortmund.de>
  6. Followup-To: comp.ai.genetic
  7. Date: 27 Dec 1993 18:06:21 GMT
  8. Organization: CS Department, University of Dortmund, Germany
  9. Lines: 1729
  10. Approved: news-answers-request@MIT.Edu
  11. Expires: 9 Feb 1994 18:06:12 GMT
  12. Message-ID: <part2_757015572@lusty.informatik.uni-dortmund.de>
  13. References: <part1_757015572@lusty.informatik.uni-dortmund.de>
  14. NNTP-Posting-Host: home.informatik.uni-dortmund.de
  15. Summary: This is part 2 of a trilogy entitled "The Hitch-Hiker's Guide
  16.      to Evolutionary Computation". A monthly published list of Frequently
  17.      Asked Questions (and their answers) about Evolutionary Algorithms,
  18.      Life and Everything. It should be read by anyone who whishes to post
  19.      to the comp.ai.genetic newsgroup, preferably *before* posting.
  20. Originator: joke@ls11.informatik.uni-dortmund.de (Joerg Heitkoetter)
  21. Xref: bloom-beacon.mit.edu comp.ai.genetic:1998 comp.answers:3186 news.answers:13391
  22.  
  23. Archive-name:   ai-faq/genetic/part2
  24. Last-Modified:  12/20/93
  25. Issue:          1.10
  26.  
  27.  
  28.  
  29.  
  30.  
  31. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  32.  
  33.  
  34.  
  35. A5) What about all this Optimization stuff? [preliminary]
  36.      Just  think of an optimization problem as a black box.  A large black
  37.      box. As large as, for example, a Coca-Cola vending machine.  Now,  we
  38.      don't  know  nothing  about  the inner workings of this box, but see,
  39.      that there are some regulators to play with, and of course  we  know,
  40.      that we want to have a bottle of the real thing...
  41.  
  42.      Putting  this  everyday problem into a mathematical model, we proceed
  43.      as follows:
  44.  
  45.      (1) we label all the regulators with x and a number starting from  1;
  46.      the  result  is  a  vector  x, i.e. (x_1,...,x_n), where n is the
  47.      number of visible regulators.
  48.  
  49.      (2) we must find an objective function, in this case it's obvious, we
  50.      want  to  get k bottles of the real thing, where k is equal to 1.
  51.      [some might want a "greater or equal"  here,  but  we  restricted
  52.      ourselves to the visible regulators (we all know that sometimes a
  53.      "kick in the right place" gets use more than 1,  but  I  have  no
  54.      idea how to put this mathematically...)]
  55.  
  56.      (3) thus,  in  the  language  some mathematicians prefer to speak in:
  57.      f(x) = k = 1. So, what we have here  is  a  maximization  problem
  58.      presented  in  a  form we know from some boring calculus lessons,
  59.      and  we  also  know  that  there  at  least   a   dozen   utterly
  60.      uninteresting  techniques to solve problems presented this way...
  61.  
  62.  What can we do in order to solve this problem?
  63.      We can either try to gain more knowledge or exploit what  we  already
  64.      know  about  the interior of the black box. If the objective function
  65.      turns out to be smooth and differentiable,  analytical  methods  will
  66.      produce the exact solution.
  67.  
  68.      If  this  turns  out  to  be impossible, we might resort to the brute
  69.      force method of enumerating the entire SEARCH SPACE.   But  with  the
  70.      number  of  possibilities  growing  exponentially in n, the number of
  71.      dimensions (inputs), this method becomes  infeasible  even  for  low-
  72.      dimensional spaces.
  73.  
  74.      Consequently,  mathematicians  have  developed  theories  for certain
  75.      kinds of problems leading  to  specialized  optimization  procedures.
  76.      These  algorithms  perform  well  if  the  black  box  fulfils  their
  77.      respective prerequisites.  For example, Dantzig's  simplex  algorithm
  78.      (Dantzig  66)  probably  represents  the  best known multidimensional
  79.      method capable of efficiently finding the global optimum of a linear,
  80.      hence  convex, objective function in a SEARCH SPACE limited by linear
  81.      constraints.  (A USENET FAQ on linear programming  is  maintained  by
  82.      John  W.  Gregory  of  Cray  Research,  Inc. Try to get your hands on
  83.      "linear-programming-faq" (and  "nonlinear-programming-faq")  that  is
  84.      posted monthly to sci.op-research and mostly interesting to read.)
  85.  
  86.  
  87.  
  88.  
  89. Issue 1.10               Posted: 20 December 1993                        1
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  98.  
  99.  
  100.  
  101.      Gradient  strategies  are  no longer tied to these linear worlds, but
  102.      they smooth their world by exploiting the objective function's  first
  103.      partial  derivatives  one  has to supply in advance. Therefore, these
  104.      algorithms rely on a locally linear internal model of the black  box.
  105.  
  106.      Newton   strategies   additionally   require   the   second   partial
  107.      derivatives, thus building a quadratic internal model.  Quasi-Newton,
  108.      conjugate  gradient  and  variable metric strategies approximate this
  109.      information during the search.
  110.  
  111.      The deterministic  strategies  mentioned  so  far  cannot  cope  with
  112.      deteriorations,  so  the search will stop if anticipated improvements
  113.      no longer occur. In a multimodal ENVIRONMENT  these  algorithms  move
  114.      "uphill"  from their respective starting points. Hence, they can only
  115.      converge to the next local optimum.
  116.  
  117.      Newton-Raphson-methods might even diverge if  a  discrepancy  between
  118.      their  internal assumptions and reality occurs.  But of course, these
  119.      methods turn out to  be  superior  if  a  given  task  matches  their
  120.      requirements.  Not relying on derivatives, polyeder strategy, pattern
  121.      search and rotating coordinate search should also be  mentioned  here
  122.      because  they  represent  robust  non-linear  optimization algorithms
  123.      (Schwefel 81).
  124.  
  125.      Dealing with technical optimization problems, one will rarely be able
  126.      to write down the objective function in a closed form.  We often need
  127.      a simulation model in order to grasp reality.  In general, one cannot
  128.      even   expect   these   models   to  behave  smoothly.  Consequently,
  129.      derivatives do not exist. That is why  optimization  algorithms  that
  130.      can  successfully  deal  with  black  box-type  situations  habe been
  131.      developed. The increasing applicability is of course paid  for  by  a
  132.      loss  of  CONVERGENCE  VELOCITY,  compared  to  algorithms  specially
  133.      designed for the given problem.  Furthermore, the guarantee  to  find
  134.      the global optimum no longer exists!
  135.  
  136.  But why turn to nature when looking for more powerful algorithms?
  137.      In  the  attempt  to  create  tools for various purposes, mankind has
  138.      copied, more often instinctively than geniously,  solutions  invented
  139.      by  nature.  Nowadays, one can prove in some cases that certain forms
  140.      or structures are not only well adapted to their ENVIRONMENT but have
  141.      even reached the optimum (Rosen 67). This is due to the fact that the
  142.      laws of nature have remained  stable  during  the  last  3.5  billion
  143.      years.  For  instance,  at branching points the measured ratio of the
  144.      diameters in a system of blood-vessels comes close to the theoretical
  145.      optimum  provided  by  the  laws of fluid dynamics (2^-1/3). This, of
  146.      course, only represents a  limited,  engineering  point  of  view  on
  147.      nature. In general, nature performs ADAPTATION, not OPTIMIZATION.
  148.  
  149.      The idea to imitate basic principles of natural processes for optimum
  150.      seeking procedures emerged more than three decades ago  (cf  Q10,  3.
  151.      Classics).  Although  these  algorithms  have proven to be robust and
  152.  
  153.  
  154.  
  155. Issue 1.10               Posted: 20 December 1993                        2
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  164.  
  165.  
  166.  
  167.      direct optimization tools, it is only in the  last  five  years  that
  168.      they  have caught the researchers' attention. This is due to the fact
  169.      that many people still look at organic EVOLUTION as a giantsized game
  170.      of  dice,  thus ignoring the fact that this model of evolution cannot
  171.      have worked: a human germ-cell comprises approximately 50,000  GENEs,
  172.      each  of  which  consists  of  about  300  triplets of nucleic bases.
  173.      Although the four existing  bases  only  encode  20  different  amino
  174.      acids,  20^15,000,000, ie circa 10^19,500,000 different genotypes had
  175.      to be tested in only circa 10^17 seconds, the age of our planet.  So,
  176.      simply  rolling  the  dice  could  not have produced the diversity of
  177.      today's complex living systems.
  178.  
  179.      Accordingly,  taking  random  samples   from   the   high-dimensional
  180.      parameter  space  of an objective function in order to hit the global
  181.      optimum must fail (Monte-Carlo search). But  by  looking  at  organic
  182.      EVOLUTION  as  a  cumulative,  highly  parallel  sieving process, the
  183.      results of which pass on slightly modified into the next  sieve,  the
  184.      amazing   diversity   and  efficiency  on  earth  no  longer  appears
  185.      miraculous. When building a model, the point is to isolate  the  main
  186.      mechanisms  which  have  led  to  today's  world  and which have been
  187.      subjected to evolution themselves. Inevitably,  nature  has  come  up
  188.      with  a  mechanism  allowing  INDIVIDUALs  of one SPECIES to exchange
  189.      parts of their genetic information (RECOMBINATION or CROSSOVER), thus
  190.      being able to meet changing environmental conditions in a better way.
  191.  
  192.      Dantzig, G.B.  (1966)  "Lineare  Programmierung  und  Erweiterungen",
  193.      Berlin: Springer. (Linear pogramming and extensions)
  194.  
  195.      Kursawe,  F.  (1994)  "Evolution strategies: Simple models of natural
  196.      processes?", Revue Internationale de Systemique, France (to  appear).
  197.  
  198.      Rosen,   R.  (1967)  "Optimality  Principles  in  Biologie",  London:
  199.      Butterworth.
  200.  
  201.      Schwefel, H.-P. (1981) "Numerical Optimization of  Computer  Models",
  202.      Chichester: Wiley.
  203.  
  204. A10) Good introductory material on EAs?
  205.  A10.1) Books for absolute beginners?
  206.      Dawkins,  R.  (1976,  1989 2nd ed) "The Selfish Gene", Oxford: Oxford
  207.      University Press.  [The 2nd edition includes the first unaltered  and
  208.      adds  two  new  chapters,  updated  references,  and "Endnotes" which
  209.      update the original text.  One of the new chapters expands ideas from
  210.      his "Extended Phenotype".]
  211.  
  212.      Dawkins,  R.  (1982)  "The  Extended Phenotype: The Gene as a Unit of
  213.      Selection", Oxford: Oxford University Press.
  214.  
  215.      Dawkins, R. (1986) "The Blind Watchmaker", New York: W.W. Norton.
  216.  
  217.  
  218.  
  219.  
  220.  
  221. Issue 1.10               Posted: 20 December 1993                        3
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  230.  
  231.  
  232.  
  233.      Gonick, L. (1983) "The Cartoon Guide to Computer Science", New  York:
  234.      Barnes & Nobel. [eds note: features an interesting chapter on Charles
  235.      Babbage in conjunction with "horse racing forecasting", if  you  want
  236.      to use EAs to fullfill this task, better read this section first]
  237.  
  238.      Gonick, L. (1983) "The Cartoon Guide to Genetics", New York: Barnes &
  239.      Nobel.
  240.  
  241.      Regis, E. (1987) "Who got Einstein's Office?  Eccentricity and Genius
  242.      at  the  Institute  for  Advanced Study", Reading, MA: Addison Wesley
  243.      [eds note: chapters 5, 10 and 12]
  244.  
  245.      Levy, S. (1992) "Artificial Life: The Quest for a new Creation",  New
  246.      York,  NY:  Pantheon. [LEVY92] [eds note: read this and you will have
  247.      the urge to work in this field]
  248.  
  249.      Sigmund, K. (1993) "Games of Life: Explorations in Ecology, Evolution
  250.      and Behaviour", Oxford: Univ. Press. 252 pp. Hard/Softcover avail.
  251.  
  252.  A10.2) Textbooks?
  253.      Goldberg,  D.E.  (1989)  "Genetic Algorithms in Search, Optimization,
  254.      and Machine  Learning",  available  from  Addison-Wesley  Publishing,
  255.      (617) 944-3700.  [GOLD89]
  256.  
  257.      Davis,  L.  (ed)  (1991)  "Handbook of Genetic Algorithms", available
  258.      from Van Nostrand Reinhold, 115 5th  Avenue,  New  York,  NY,  10003,
  259.      (800) 926-2665. ISBN 0-442-00173-8.
  260.  
  261.      Michalewicz,  Z.  (1992)  "Genetic  algorithms  +  Data  Structures =
  262.      Evolution Programs", Springer-Verlag, 175 5th Avenue, New  York,  NY,
  263.      10010, (212) 460-1500.
  264.  
  265.      Koza,  J.R.  (1992),  "Genetic  Programming:  On  the  Programming of
  266.      Computers by means of Natural Selection", Cambridge, MA:  MIT  Press.
  267.      [KOZA92]
  268.  
  269.  A10.3) The Classics?
  270.      Charles  Darwin (1859), "The Origin of Species", London: John Murray.
  271.      (Penguin  Classics,  London,  1985;  New  American  Library,   Mentor
  272.      Paperback)
  273.  
  274.      Box,  G.E.P.  (1957)  "Evolutionary operation: a method of increasing
  275.      industrial productivity", Applied Statistics, 6, 81-101.
  276.  
  277.      Fraser, A.S. (1957)  "Simulation  of  genetic  systems  by  automatic
  278.      digital  computers",  Australian  Journal of Biological Sciences, 10,
  279.      484-491.
  280.  
  281.      Friedman,  G.J.  (1959)  "Digital  simulation  of   an   evolutionary
  282.      process", General Systems Yearbook, 4:171-184.
  283.  
  284.  
  285.  
  286.  
  287. Issue 1.10               Posted: 20 December 1993                        4
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  296.  
  297.  
  298.  
  299.      Bremermann,   H.J.   (1962)   "Optimization   through  evolution  and
  300.      recombination". In M.C. Yovits, et al, (eds) Self-Organizing Systems.
  301.      Washington, DC: Spartan Books.
  302.  
  303.      Holland,  J.H.  (1962)  "Outline  for  a  logical  theory of adaptive
  304.      systems", JACM, 3, 297-314.
  305.  
  306.      Samuel, A.L. (1963) "Some Studies in Machine Learning using the  Game
  307.      of  Checkers",  in  Computers  and  Thought,  E.A.  Feigenbaum and J.
  308.      Feldman (eds), New York: McGraw-Hill.
  309.  
  310.      Walter, W.G. (1963) "The Living Brain", New York: W.W. Norton.
  311.  
  312.      Fogel,  L.J.,  Owens,  A.J.  &   Walsh,   M.J.   (1966)   "Artificial
  313.      Intelligence through Simulated Evolution", New York: Wiley.
  314.  
  315.      Rosen,   R.   (1967)  "Optimality  Principles  in  Biology",  London:
  316.      Butterworths.
  317.  
  318.      Rechenberg, I. (1973, 1993 2nd edn) "Evolutionsstrategie: Optimierung
  319.      technischer  Systeme  nach  Prinzipien  der  biologischen Evolution",
  320.      Stuttgart: Fromman-Holzboog.  (Evolution  Strategy:  Optimization  of
  321.      technical systems by means of biological evolution)
  322.  
  323.      Holland,  J.H. (1975) "Adaptation in natural and artificial systems",
  324.      Ann Arbor, MI: The University of Michigan Press.
  325.  
  326.      De Jong, K.A. (1975) "An analysis of  the  behavior  of  a  class  of
  327.      genetic  adaptive  systems",  Doctoral  thesis, Dept. of Computer and
  328.      Communication Sciences, University of Michigan, Ann Arbor.
  329.  
  330.      Schwefel, H.-P. (1977) "Numerische Optimierung von  Computer-Modellen
  331.      mittels der Evolutionsstrategie", Basel: Birkhaeuser.
  332.  
  333.      Schwefel,  H.-P.  (1981) "Numerical Optimization of Computer Models",
  334.      Chichester: Wiley. [eds note: English  translation  of  the  previous
  335.      entry; a reworked edition is currently in preparation for 1994]
  336.  
  337.      Axelrod, R. (1984) "The evolution of cooperation", NY: Basic Books.
  338.  
  339.      Cramer,  N.L. (1985) "A Representation for the Adaptive Generation of
  340.      Simple Sequential Programs" [ICGA85], 183-187.
  341.  
  342.      Baeck, T., Hoffmeister, F. & Schwefel,  H.-P.  (1991)  "A  Survey  of
  343.      Evolution Strategies" [ICGA91], 2-9.
  344.  
  345.      Rudolph,   G.  (1994)  "Convergence  Analysis  of  Canonical  Genetic
  346.      Algorithms", IEEE Trans. on Neural Networks, Special issue on EP. (to
  347.      appear).   [eds note: unfortunately the publisher denies distribution
  348.      of this article, until January '94. I therefore include the  abstract
  349.      here: This paper analyzes the convergence properties of the canonical
  350.  
  351.  
  352.  
  353. Issue 1.10               Posted: 20 December 1993                        5
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  362.  
  363.  
  364.  
  365.      genetic algorithm (CGA) with  mutation,  crossover  and  proportional
  366.      reproduction  applied  to  statistic  optimization  problems.   It is
  367.      proved by means of homogeneous finite Markov chain  analysis  that  a
  368.      CGA  will  never  converge  to  the  global optimum regardless of the
  369.      initialization,  crossover  operator  and  objective  function.   But
  370.      variants  of  CGAs  that  always  maintain  the  best solution in the
  371.      population, either before or after selection, are shown  to  converge
  372.      to  the  global  optimum  due  to  the irreducibility property of the
  373.      underlying orginal nonconvergent CGA.  The results are discussed with
  374.      respect to the schema theorem.]
  375.  
  376.  A10.4) Introductory Journal Articles?
  377.      Goldberg,  D.E.  (1986)  "The  Genetic  Algorithm: Who, How, and What
  378.      Next?".  In Kumpati S. Narenda, ed., Adaptive and  Learning  Systems,
  379.      Plenum, New York, NY.
  380.  
  381.      Dawkins,   R.  (1987)  "The  Evolution  of  Evolvability",  [ALIFEI],
  382.      201-220.
  383.  
  384.      Hillis, W.D. (1987) "The Connection  Machine",  Scientific  American,
  385.      255(6).
  386.  
  387.      Holland,  J.H.  (1989)  "Using  Classifier  Systems to Study Adaptive
  388.      Nonlinear Networks". In: Lectures in the Science of  Complexity,  SFI
  389.      Studies in the Science of Complexity, D. Stein, (ed), Addison Wesley.
  390.  
  391.      Brooks, R.A. (1991) "Intelligence without Reason", MIT  AI  Memo  No.
  392.      1293.  Appeared in "Computer's and Thought", IJCAI-91.
  393.  
  394.      Hillis,  W.D. (1992) "Massively Parallel Computing" Daedalus, winter,
  395.      121(1), 1-29. [HILLIS92]
  396.  
  397.      Holland,  J.H.  (1992)  "Genetic  Algorithms",  Scientific  American,
  398.      260(9), 44-51. [HOLLAND92]
  399.  
  400.      Holland,  J.H.  (1992)  "Complex  Adaptive Systems" Daedalus, winter,
  401.      121(1), 17-30.
  402.  
  403.      Sims,  K.  (1991)  "Artificial  Evolution  for  Computer   Graphics",
  404.      Computer Graphics, 25(4), 319-328
  405.  
  406.      Spears,  W.M.,  DeJong,  K.A.,  Baeck,  T.,  Fogel, D. & de Garis, H.
  407.      (1993) "An Overview of Evolutionary Computation", [ECML93],  442-459.
  408.  
  409.      Baeck,  T.  &  Schwefel,  H.-P.  (1993)  "An Overview of Evolutionary
  410.      Algorithms for  Parameter  Optimization",  Evolutionary  Computation,
  411.      1(1), 1-23.
  412.  
  413.      Baeck,  T.,  Rudolph,  G.  &  Schwefel,  H.-P.  (1993)  "Evolutionary
  414.      Programming and Evolution Strategies: Similarities and  Differences",
  415.      [EP93], 11-22.
  416.  
  417.  
  418.  
  419. Issue 1.10               Posted: 20 December 1993                        6
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  428.  
  429.  
  430.  
  431.      Mitchell,  M.  & Forrest S. (1993) "Genetic Algorithms and Artificial
  432.      Life", Artificial Life, 1(1), (to appear). Also avail. as SFI Working
  433.      Paper 31-11-072.
  434.  
  435.  A10.5) Introductory Technical Reports?
  436.      Hoffmeister,  F.  &  Baeck,  T.  (1990, 1992) "Genetic Algorithms and
  437.      Evolution Strategies: Similarities and  Differences",  University  of
  438.      Dortmund,  Dept.  of  CS,  SyS-1/92.  Available  via  anon.  ftp from
  439.      lumpi.informatik.uni-dortmund.de.
  440.  
  441.      Whitley, D. (1993) "A Genetic  Algorithm  Tutorial",  Colorado  State
  442.      University,  Dept.  of CS, TR CS-93-103. Available via anon. ftp from
  443.      beethoven.cs.colostate.edu.
  444.  
  445.  A10.6) Not-quite-so-introductory Literature?
  446.      Bock,  P.  (1993)  "The  Emergence  of   Artificial   Cognition:   An
  447.      Introduction to Collective Learning", Singapore: World Scientific.
  448.  
  449.      Davis,  L.  (ed) (1987) "Genetic Algorithms and Simulated Annealing",
  450.      available from Morgan Kaufmann Publishers (address and  phone  number
  451.      below).
  452.  
  453.      Davidor,  Y.  (1991)  "Genetic  Algorithms  and Robotics", Singapore:
  454.      World Scientific. ISBN 9-810202172.
  455.  
  456.      Forrest,  S.  (ed)  (1990)  "Emergent  Computation.  Self-Organizing,
  457.      Collective,  and  Cooperative  Phenomena  in  Natural  and Artificial
  458.      Computing Networks", [FORREST90], Cambridge, MA: MIT Press.  (Special
  459.      issue of Physica D.)
  460.  
  461.      Hillis,   W.D.   (1990)   "Co-Evolving  Parasites  Improve  Simulated
  462.      Evolution as an Optimization procedure", [ALIFEII], 313-324.
  463.  
  464.      Holland, J.H., Holyoak, K.J., Nisbett, R.E. &  Thagard,  P.R.  (1986)
  465.      "Induction:   Processes   of  Inference,  Learning,  and  Discovery",
  466.      Cambridge, MA: MIT Press.
  467.  
  468.      Holland, J.H. (1992) "Adaptation in Natural and  Artificial  Systems:
  469.      An  Introductory  Analysis with Applications to Biology, Control, and
  470.      Artificial Intelligence, Cambridge,  MA:  MIT  Press/Bradford  Books,
  471.      (2nd edn). Hard: ISBN 0-262-08213-6. Soft: ISBN 0-262-58111-6.
  472.  
  473.      Serra,  R.  &  Zanarini,  G.  (1990)  "Complex  Systems and Cognitive
  474.      Processes", New York, NY: Springer-Verlag.
  475.  
  476.      Rujan, P. (1988) "Searching for optimal configurations  by  simulated
  477.      tunneling", Zeitschrift der Physik B", Vol.73, 391-416.
  478.  
  479.  A10.7) Biological Background Readings?
  480.      Adams,  D. with Carwardine M. (1990) "Last Chance to see...", London:
  481.      Heinemann. [David  Corne:  you  don't,  in  the  FAQ,  reference  his
  482.  
  483.  
  484.  
  485. Issue 1.10               Posted: 20 December 1993                        7
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  494.  
  495.  
  496.  
  497.      (Adams')  recent  book  "Last Chance to See".  I strongly suggest you
  498.      read it if you haven't; it's  not  another  book  in  the  Hitchhiker
  499.      trilogy,  or  anything  like  that, but a report on visits to various
  500.      parts of the world to see endangered species.  It  is,  nevertheless,
  501.      remarkably and wonderfully funny and illuminating.  It would actually
  502.      be a good reference to have in any bit of the FAQ to do with  genetic
  503.      diversity  and/or  the  lack  of  it,  or  the  remarkable  kinds  of
  504.      adaptations that can occur for the strangest reasons.
  505.  
  506.      There's this weird New Zealand parrot-like bird  called  the  Kakapo,
  507.      for  example,  which  has  almost  disappeared.  It  used to be quite
  508.      abundant,  so abundant, in fact, that it evolved weird ways  to  keep
  509.      it's  population  down. Kakapo males call females with a strange very
  510.      low booming sound, about once every three  years,  and  only  when  a
  511.      certain kind of tree is in fruit. A further obstacle to their getting
  512.      together is the daft fact that since the mating call is at such a low
  513.      frequency,  the  poor  female  just  can't  tell what direction it is
  514.      coming from.]
  515.  
  516.      Cairns-Smith, A.G. (1985)  "Seven  Clues  to  the  Origin  of  Life",
  517.      Cambridge: Cambridge Univ. Press.
  518.  
  519.      Fisher,  R.A.  (1958)  "The Genetic Theory of Natural Selection", New
  520.      York: Dover.
  521.  
  522.      Lewontin, R.C. (1974) "The Genetic Basis of Evolutionary Change", New
  523.      York: Columbia Univ. Press.
  524.  
  525.      Maynard  Smith,  J. (1972) "On Evolution", Edinburgh: Edinburgh Univ.
  526.      Press.
  527.  
  528.      Maynard Smith, J. (1978) "Optimization Theory in  Evolution",  Annual
  529.      Review of Ecology and Systematics 9:31-56.
  530.  
  531.      Maynard  Smith,  J.  (1982)  "Evolution  and  the  Theory  of Games",
  532.      Cambridge: Cambridge Univ. Press.
  533.  
  534.      Maynard Smith, J. (1989) "The Problems of  Biology",  Oxford:  Oxford
  535.      Univ. Press.
  536.  
  537.      Futuyma,  D.J. (1986) "Evolutionary Biology", Sunderland, MA: Sinauer
  538.      Assoc.  [eds note: the bibliography of this book is truly a  treasure
  539.      chest]
  540.  
  541.      Maynard  Smith,  J.  (1989)  "Evolutionary  Genetics", Oxford: Oxford
  542.      Univ. Press.
  543.  
  544.      Mayr, E.  (1963)  "Animal  Species  and  Evolution",  Cambridge,  MA:
  545.      Harvard Univ. Press.
  546.  
  547.  
  548.  
  549.  
  550.  
  551. Issue 1.10               Posted: 20 December 1993                        8
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  560.  
  561.  
  562.  
  563.      Mayr, E. (1982) "The Groth of Biological Thought", Cambridge, MA: The
  564.      Belknap Press of Harvard Univ. Press.
  565.  
  566.      Ridley, M. (1985) "The Problems of Evolution", Oxford:  Oxford  Univ.
  567.      Press.
  568.  
  569.      Watson,  J.D.  (1966)  "Molecular  Biology  of the Gene", Menlo Park:
  570.      Benjamin.
  571.  
  572.      Watson, J.D., Hopkins, N.H., Roberts, J.W., Steitz,  J.A.  &  Weiner,
  573.      A.M.  (1987)  "Molecular  Biology of the Gene (4th edn)", Menlo Park:
  574.      Benjamin.
  575.  
  576.      Williams, G.C. (1966) "Adaptation and Natural Selection",  Princeton,
  577.      NJ: Princeton Univ. Press.
  578.  
  579.      Wright,  S.  (1932) "The roles of mutation, inbreeding, crossbreeding
  580.      and selection in evolution", in: Proc. of the 6th Int'l  Congress  on
  581.      Genetics I, 356.
  582.  
  583.  A10.8) Electronic Bibliography Collections?
  584.      A  bibliography  of  over  400  entries  in  the area of Evolutionary
  585.      Computation (GA/ES/EP/GP) is now available (in BibTeX and  PostScript
  586.      formats) by anonymous FTP from:
  587.  
  588.       magenta.me.fau.edu:/pub/ep-list/bib/EC-ref.bib.Z (BibTeX)
  589.       magenta.me.fau.edu:/pub/ep-list/bib/EC-ref.ps.Z  (PostScript)
  590.  
  591.      The  above  files  are  compressed. Please make sure you use "binary"
  592.      mode when you transfer these files. Please  send  any  additions  and
  593.      corrections      to      <saravan@amber.me.fau.edu>      or      <EP-
  594.      List@magenta.me.fau.edu>.
  595.  
  596.  A10.9) Videos?
  597.      Sims,  K.  (1990)  "Panspermia",  ACM  Sigraph  Review.  order   form
  598.      available                 by                 ftp                 see:
  599.      siggraph.org:/publications/video_review/order_blank  Look   in   that
  600.      directory  for  other  useful information.  Note that "Panspermia" is
  601.      Item 23 of Issue 62 of the "SIGGRAPH Video Review".
  602.  
  603.      Langton, C.G. (ed) (1992) "Artificial Life II Video Proceedings"  The
  604.      Advanced  Book  Program  of  the  Santa  Fe Institute: Studies in the
  605.      Sciences of Complexity, Addison Wesley, ISBN 0-201-55492-5.
  606.  
  607.      Koza, J.R. & Rice, J.P.  (1992)  "Genetic  Programming:  The  Movie",
  608.      Cambridge, MA: MIT Press. (see GP-faq for an order form, cf Q15)
  609.  
  610.      The  Santa  Fe  Institute  has produced a thirteen minute promotional
  611.      video, which includes a roughly five minute  segment  discussing  the
  612.      Tierra  research  project.   The Tierra segment is illustrated with a
  613.      very high quality animation produced by the Anti Gravity Workshop  in
  614.  
  615.  
  616.  
  617. Issue 1.10               Posted: 20 December 1993                        9
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  626.  
  627.  
  628.  
  629.      Santa  Monica,  CA.   The  video  was  produced and directed by Linda
  630.      Feferman.  To obtain the video, contact the Santa Fe Institute:
  631.  
  632.       Santa Fe Institute
  633.       1660 Old Pecos Trail, Suite A
  634.       Santa Fe, New Mexico 87501
  635.       Tel: 505-984-8800
  636.       Fax: 505-982-0565
  637.       Net: <email@santafe.edu>
  638.      or     contact     Linda     Feferman:      <fef@santafe.edu>      or
  639.      <0005851689@mcimail.com>
  640.  
  641.  
  642.  A10.10) CD-ROMs?
  643.   PTF for AI by CMU
  644.      Carnegie Mellon University is establishing an Artificial Intelligence
  645.      Repository  to  contain  public  domain  and   freely   distributable
  646.      software,  publications,  and  other  materials  of  interest  to  AI
  647.      researchers, educators, and  students.  The  AI  Repository  will  be
  648.      accessible  by  anonymous  FTP  and  Andrew File System (AFS) without
  649.      charge.  The contents of the repository will  also  be  published  by
  650.      Prime  Time  Freeware  as  an  inexpensive  mixed-media (Book/CD-ROM)
  651.      publication.
  652.  
  653.      For your information, here is a precis of the CD-ROM:
  654.  
  655.      PTF for AI is a periodic collection of  AI-related  source  code  and
  656.      documentation.   PTF for AI in no way modifies the legal restrictions
  657.      on any package it includes.  The upcoming issue (1-1;  Summer,  1993)
  658.      will  consist  of an ISO-9660 CD-ROM bound into a ~100 page book.  It
  659.      will contain ~600 MB of gzipped  archives  (2+  GB  uncompressed  and
  660.      unpacked).  It will sell (list) for $60 US.
  661.  
  662.      For  more  information  contact:  Mark  Kantrowitz, Archivist, CMU AI
  663.      Repository, Editor, PTF for AI.  Net:  <mkant+repository@cs.cmu.edu>,
  664.      Tel: +1 412-268-2582, Fax: +1 412-681-5739.
  665.  
  666.   AI CD-ROM by NCC
  667.      Network  Cybernetics  Corporation  is  now shipping the second annual
  668.      revision of their  popular  AI  CD-ROM,  an  ISO-9660  format  CD-ROM
  669.      containing  a  wide  assortment  of  information on AI, Robotics, and
  670.      other advanced machine technologies. The AI CD-ROM contains thousands
  671.      of  programs,  source  code  collections, tutorials, research papers,
  672.      Internet journals, and other resources. The  topics  covered  include
  673.      artificial  intelligence, artificial life, robotics, virtual reality,
  674.      and many related fields. Programs for  OS/2,  DOS,  Macintosh,  UNIX,
  675.      Amiga,  and other platforms can be found on the disc.  The files have
  676.      been  collected  from  civilian  and  government  research   centers,
  677.      universities,  Internet archive sites, BBS systems and other sources.
  678.      The CD-ROM is updated annually to keep it  current  with  the  latest
  679.      trends  and developments in advanced machine technologies such as AI.
  680.  
  681.  
  682.  
  683. Issue 1.10               Posted: 20 December 1993                       10
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  692.  
  693.  
  694.  
  695.      The AI CD-ROM Rev. 1 was a CD-ROM PROFESSIONAL CONSUMER DISK  PRODUCT
  696.      OF  THE  YEAR  AWARD  finalist  and has received good reviews in many
  697.      magazines including  Byte  (Jerry  Pournelle,  March  '93)  and  IEEE
  698.      Computer (J. Zalewski, July '93), CD-ROM Professional and others.
  699.  
  700.      For  people  wanting  to see a complete listing of the CD's contents,
  701.      look for the file AICDROM2.ZIP at an ftp site near you.  The file  is
  702.      also  available from the Compuserve AI forum, and the NCC dial-up BBS
  703.      at 214-258-1832. It contains the file listing, this press release,  a
  704.      couple   of   magazine  reviews  of  the  disc,  and  other  assorted
  705.      information. Oh, and one last note regarding pricing - customers have
  706.      told  us  that Programmer's Pardise seems to have the best pricing in
  707.      the US on the disc...
  708.  
  709.      Direct inquiries to:
  710.  
  711.       Network Cybernetics Corporation
  712.       4201 Wingren Road, Suite 202
  713.       Irving, TX 75062-2763, USA
  714.  
  715.       Fax: 214-650-1929
  716.       Net: <orders@ncc.com>
  717.  
  718.  
  719.  A10.11) How do I get a copy of a dissertation?
  720.      All US American dissertations are avail. from:
  721.  
  722.       UMI Dissertation Information Service
  723.       University Microfilms International
  724.       A Bell & Howell Information Company
  725.       300 N. Zeeb Road
  726.       Ann Arbor, Michigan 48106, USA
  727.       Tel.: 800-521-0600, or +1 (313) 761-4700
  728.  
  729.  
  730. A11) Any journals and magazines?
  731.      [eds note: comments on speed of  reviewing  and  publishing,  whether
  732.      they accept LaTeX/TeX format or ASCII by e-mail, etc. may be added]
  733.  
  734.  1. Dedicated EC Journals:
  735.   Evolutionary Computation
  736.      Published  quarterly  by:  MIT  Press  Jornals,  55  Hayward  Street,
  737.      Cambridge, MA  02142-1399,  USA.  Tel:  (617)  253-2889,  Fax:  (617)
  738.      258-6779, Net: <journals-orders@mit.edu>
  739.  
  740.      Along  with  the  explosive growth of the computing industry has come
  741.      the need  to  design  systems  capable  of  functioning  in  complex,
  742.      changing  ENVIRONMENTs.   Considerable  effort is underway to explore
  743.      alternative approaches to  designing  more  robust  computer  systems
  744.      capable  of  learning  from  and adapting to the environment in which
  745.      they operate.
  746.  
  747.  
  748.  
  749. Issue 1.10               Posted: 20 December 1993                       11
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  758.  
  759.  
  760.  
  761.      One broad class of such techniques takes its inspiration from natural
  762.      systems   with   particular   emphasis   on  evolutionary  models  of
  763.      computation such as GAs, ESS.  CFS, and EP. Until now, information on
  764.      these  techniques  has  been widely spread over numerous disciplines,
  765.      conferences, and journals.  [eds note: The editorial board reads like
  766.      a  who-is-who  in  EC.]   For paper e-mail submission, use one of the
  767.      following addresses:
  768.  
  769.       America:  John Grefenstette <gref@aic.nrl.navy.mil>
  770.       Europe:        Heinz Muehlenbein <heinz.muehlenbein@gmd.de>
  771.       Asia:          Hiroaki Kitano <kitano@spls26.ccs.mt.nec.co.jp>
  772.  
  773.       Ed-in-chief:   Ken De Jong <kdejong@aic.gmu.edu>
  774.  
  775.      Please note, that submissions should be  sent  to  one  of  the  sub-
  776.      editors.    Grefenstette   and  Kitano  accept  LaTeX  or  PostScript
  777.      submissions.
  778.  
  779.   BioSystems
  780.      Journal of Biological and Information Processing  Sciences,  Elsevier
  781.      Science   Publishers,   P.O.   Box   1527,  1000  BM  Amsterdam,  The
  782.      Netherlands.
  783.  
  784.      BioSystems encourages experimental,  computational,  and  theoretical
  785.      articles   that   link   biology,   evolutionary  thinking,  and  the
  786.      information processing sciences. The link areas form  a  circle  that
  787.      encompasses   the   fundamental   nature  of  biological  information
  788.      processing, computational modeling  of  complex  biological  systems,
  789.      evolutionary  models  of  computation,  the application of biological
  790.      principles to the design of novel computing systems, and the  use  of
  791.      biomolecular  materials to synthesize artificial systems that capture
  792.      essential principles of natural biological information processing.
  793.  
  794.      Topics: MOLECULAR  EVOLUTION:  Self-organizing  and  self-replicating
  795.      systems,  Origin  and  EVOLUTION of the genetic mechanism; BIOLOGICAL
  796.      INFORMATION  PROCESSING:  Molecular  recognition,  Cellular  control,
  797.      Neuromuscular computing, Biological adaptability, Molecular computing
  798.      technologies;   EVOLUTIONARY   SYSTEMS:    Stochastic    evolutionary
  799.      algorithms,  Evolutionary  optimization,  Simulation  of  genetic and
  800.      ecological systems,  Applications  (neural  nets,  machine  learning,
  801.      robotics))
  802.  
  803.  2. Related Journals:
  804.   Complex Systems
  805.      Published  by:  Complex  Systems  Publications,  Inc., P.O. Box 6149,
  806.      Champaign, IL 61821-8149, USA.
  807.  
  808.      Complex Systems devotes to the rapid publication of research  on  the
  809.      science,   mathematics,   and  engineering  of  systems  with  simple
  810.      components  but  complex   overall   behavior.   Try   finger(1)   on
  811.      <jcs@wri.com> for additional info.
  812.  
  813.  
  814.  
  815. Issue 1.10               Posted: 20 December 1993                       12
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  824.  
  825.  
  826.  
  827.   Machine Learning
  828.      Published  by:  Kluwer  Academic  Publishers,  P.O.  Box  358, Accord
  829.      Station, Hingham, MA 02018-0358 USA.
  830.  
  831.      Machine  Learning  is  an  international  forum   for   research   on
  832.      computational  approaches to learning. The journal publishes articles
  833.      reporting substantive research results on a wide  range  of  learning
  834.      methods  applied  to  a variety of task domains. The ideal paper will
  835.      make   a   theoretical   contribution   supported   by   a   computer
  836.      implementation.
  837.  
  838.      The  journal  has  published  many  key  papers  in  learning theory,
  839.      reinforcement learning,  and  decision  tree  methods.   The  journal
  840.      regularly publishes special issues devoted to GAs and CFS as well.
  841.  
  842.   Adaptive Behavior
  843.      Published  quarterly  by:  MIT  Press  Jornals,  55  Hayward  Street,
  844.      Cambridge, MA  02142-1399,  USA.  Tel:  (617)  253-2889,  Fax:  (617)
  845.      258-6779, Net: <journals-orders@mit.edu>
  846.  
  847.      Broadly,  behavior  is adaptive if it deals successfully with changes
  848.      circumstances.  For  example,  when   surprised,   a   hungry   --but
  849.      environmentally  informed--  mouse  may  dart  for  cover rather than
  850.      another piece of cheese. Similarly, a tripped-up ROBOT [eds note: not
  851.      necessarily built by Sirius Cybernetics Corp.]  could get back on its
  852.      feet and accomplish a moonrock-finding mission if it had  learned  to
  853.      cope with unanticipated lunar potholes.
  854.  
  855.      Adaptive Behavior thus takes an approach complementary to traditional
  856.      AI.  Now basic abilities that allow animals to survive, or ROBOTs  to
  857.      perform  their mission in unpredictable ENVIRONMENTs, will be studied
  858.      in preference to more elaborate and human-specific abilities.
  859.  
  860.      The  journal  also  aims  to  investigate  which  new  insights  into
  861.      intelligence  and cognition can be achieved by explicitly taking into
  862.      account the ENVIRONMENT feedback --mediated  by  behavior--  that  an
  863.      animal  or  a  ROBOT  receives,  instead  of  studying  components of
  864.      intelligence in isolation.
  865.  
  866.      Topics: INDIVIDUAL and  Collective  Behavior.  Neural  Correlates  of
  867.      Behavior.  Perception  and  Motor  Control.  Motivation  and Emotion.
  868.      Action Selection and Behavioral  Sequences.  Internal  World  Models.
  869.      Ontogeny, Learning, and EVOLUTION.  Characterization of ENVIRONMENTs.
  870.  
  871.   Artificial Life
  872.      Published  quarterly  by:  MIT  Press  Jornals,  55  Hayward  Street,
  873.      Cambridge,  MA  02142-1399,  USA.  Tel:  (617)  253-2889,  Fax: (617)
  874.      258-6779, Net: <journals-orders@mit.edu>
  875.  
  876.      Artificial  Life  is  intended  to  be  the  primary  forum  for  the
  877.      dissemination  of scientific and engineering research in the field of
  878.  
  879.  
  880.  
  881. Issue 1.10               Posted: 20 December 1993                       13
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  890.  
  891.  
  892.  
  893.      ARTIFICIAL LIFE.  It will report on synthetic biological  work  being
  894.      carried  out  in  any  and  all media, from the familiar "wetware" of
  895.      organic chemistry, through the inorganic "hardware" of mobile ROBOTs,
  896.      all the way to the virtual "software" residing inside computers.
  897.  
  898.      Research  topics  ranging  from  the  fabrication of self-replicating
  899.      molecules to the study of evolving POPULATIONs of  computer  programs
  900.      will be included.
  901.  
  902.      There  will also be occasional issues devoted to special topics, such
  903.      as L-Systems, GENETIC ALGORITHMs, in-vitro  EVOLUTION  of  molecules,
  904.      artificial cells, computer viruses, and many social and philosophical
  905.      issues arising from the attempt to synthesize life artificially.
  906.  
  907.      [eds note: The editorial board reads like a who-is-who in Alife]
  908.  
  909.   Evolutionary Economics
  910.      Published quarterly  by:  Springer-Verlag  New  York,  Inc.,  Service
  911.      Center  Secaucus,  44 Hartz Way, Secaucus, NJ 07094, USA.  Tel: (201)
  912.      348-4033, Fax: (201) 348-4505.
  913.  
  914.      Evolutionary Economics aims to provide an international forum  for  a
  915.      new  approach  to  economics.   Following  the tradition of Joseph A.
  916.      Schlumpeter, it is designed to focus on  original  research  with  an
  917.      evolutionary  conception  of  the  economy.  The journal will publish
  918.      articles  with  strong  emphasis  on  dynamics,  changing  structures
  919.      (including technologies, institutions, beliefs, imitation, etc.).  It
  920.      favors interdisciplinary analysis  and  is  devoted  to  theoretical,
  921.      methodological and applied work.
  922.  
  923.      Research  areas  include:  industrial  dynamics;  multi-sectoral  and
  924.      cross-country  studies   of   productivity;   innovations   and   new
  925.      technologies; dynamic competition and structural change in a national
  926.      and international  context;  causes  and  effects  of  technological,
  927.      political and social changes; cyclic processes in economic EVOLUTION;
  928.      the role of governments in a dynamic world; modeling complex  dynamic
  929.      economic systems; application of concepts, such as self-organization,
  930.      bifurcation, and chaos theory to economics; evolutionary games.
  931.  
  932.  
  933.  
  934. A12) Important conferences on EC? Proceedings?
  935.  1. Dedicated EC Conferences:
  936.   ICGA: Int'l Conference on Genetic Algorithms
  937.      Major international conference held in North America in  odd-numbered
  938.      years.  Covers  all  aspects  of  EVOLUTIONARY COMPUTATION.  The 1995
  939.      conference will be held in [..], on [..]  For details contact [..]
  940.  
  941.      Proceedings of the 1st International Conference on Genetic Algorithms
  942.      (1985)  J.J.  Grefenstette  (ed)  [ICGA85] and Proc. of the 2nd Int'l
  943.      Conf. on Genetic Algorithms (1987) J.J.  Grefenstette  (ed)  [ICGA87]
  944.  
  945.  
  946.  
  947. Issue 1.10               Posted: 20 December 1993                       14
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  956.  
  957.  
  958.  
  959.      available  from  Lawrence  Erlbaum  Associates,  Inc.,  365 Broadway,
  960.      Hillsdale, New Jersey, 07642, (800) 926-6579.
  961.  
  962.      Proc. of the 3rd  Int'l  Conf.  on  Genetic  Algorithms  (1989)  J.D.
  963.      Schaffer  (ed)  [ICGA89]  and Proc. of the 4th Int'l Conf. on Genetic
  964.      Algorithms (1991) R.K. Belew and L.B. Booker (eds) [ICGA91] and Proc.
  965.      of  the  5th Int'l Conf. on Genetic Algorithms (1993) S. Forrest (ed)
  966.      [ICGA93] available from Morgan Kaufmann Publishers,  Inc.,  P.O.  Box
  967.      50490,   Palo   Alto,   CA,   94303-9953,   (415)   578-9911.    Net:
  968.      <morgan@unix.sri.com>
  969.  
  970.   FOGA: Foundations of Genetic Algorithms
  971.      Major international workshop focusing on theoretical aspects  of  EC,
  972.      that's  usually limited to some 50 participants and is held somewhere
  973.      in North America.
  974.  
  975.      FOGA 3 will take place from July 30 to August 3  in  1994,  in  Estes
  976.      Park,  outside  Rocky  Mountain  National Park.  Paper submission and
  977.      inquires to: Darrell Whitley, Dept. of CS, Colorado State University,
  978.      Fort Collins, CO 80523.  Net: <whitley@cs.colostate.edu>
  979.  
  980.      Foundations of Genetic Algorithms (1991) G.J.E. Rawlins (ed) [FOGA91]
  981.      and Foundations of Genetic Algorithms 2 (1993) L.D. Whitley  [FOGA93]
  982.      available from Morgan Kaufmann Publishers, Inc., P.O. Box 50490, Palo
  983.      Alto, CA, 94303-9953, (415) 578-9911.  Net: <morgan@unix.sri.com>
  984.  
  985.   PPSN: Parallel Problem Solving from Nature
  986.      Major international conference held in Europe in even-numbered years.
  987.      Covers  all aspects of problem solving inspired by natural processes.
  988.      The 1994 conference will be held in  Israel  in  a  Kibbuz  close  to
  989.      Jerusalem,   October   9-14.    For  details  contact  Yuval  Davidor
  990.      <yuval@weizmann.ac.il>.
  991.  
  992.      Parallel Problem Solving from Nature, (1990) H.-P.  Schwefel  and  R.
  993.      Maenner  (eds) [PPSN90] published by Springer-Verlag, 175 5th Avenue,
  994.      New York, NY, 10010, (212) 460-1500.  Parallel Problem  Solving  from
  995.      Nature 2, (1992) R. Maenner and B. Manderick (eds) [PPSN92] published
  996.      by North-Holland, Elsevier Science Publishers, Sara  Burgerhartstraat
  997.      25,  P.O.  Box  211,  1000  AE  Amsterdam, The Netherlands.  Parallel
  998.      Problem Solving from Nature 3, (1994) Y.  Davidor,  [PPSN94]  (to  be
  999.      published)
  1000.  
  1001.   EP: Annual Conference on Evolutionary Programming
  1002.      Major  international  annual  conference  held in San Diego, CA, USA.
  1003.      Covers all aspects of EC with emphasis on EP related  research.   The
  1004.      1994  conference  will  be held in San Diego, in February 24-25.  For
  1005.      details contact David Fogel <fogel@sunshine.ucsd.edu>.
  1006.  
  1007.      Proceedings of the 1st Annual Conference on Evolutionary Programming,
  1008.      (1992)  D.B.  Fogel  and W. Atmar (eds), [EP92], and Proc. of the 2nd
  1009.      Annual Conf. on Evolutionary Programming, (1993) D.B.  Fogel  and  W.
  1010.  
  1011.  
  1012.  
  1013. Issue 1.10               Posted: 20 December 1993                       15
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1022.  
  1023.  
  1024.  
  1025.      Atmar   (eds),  [EP93]  published  by  the  Evolutionary  Programming
  1026.      Society, 9363 Towne Centre Dr.,  San  Diego,  CA  92121,  Attn:  Bill
  1027.      Porto, Treasurer. (cf Q13)
  1028.  
  1029.  2. Related Conferences:
  1030.   Alife: International Conference on Artificial Life
  1031.      Proceedings  of  the 1st International Conference on Artificial Life,
  1032.      (1989) C.G. Langton (ed), Santa Fe Institute Studies in the  Sciences
  1033.      of  Complexity,  Proc.  Vol.  VI, [ALIFEI] and Proc. of the 2nd Int'l
  1034.      Conf. on Artificial Life II, (1992) C.G. Langton, C. Taylor, J. Doyne
  1035.      Farmer  and  S.  Rasmussen  (eds),  Santa Fe Institute Studies in the
  1036.      Sciences of Complexity, Proc. Vol. X, [ALIFEII] and Proc. of the  3rd
  1037.      Int'l  Conf.  on  Artificial  Life  III,  (1993)  C.G.  Langton (ed),
  1038.      [ALIFEIII] published by Addison Wesley, Redwood City, CA, USA.
  1039.  
  1040.      Artificial Life IV, will be organized by Rodney Brooks, MIT  AI  Lab,
  1041.      and  held  at July 6-8, 1994. Proceedings will be edited by R. Brooks
  1042.      and P. Maes. Papers should be send to: Rodney Brooks/Alife IV, MIT AI
  1043.      Lab,  545  Technology  Square, Cambridge, MA 02139, USA. Or by e-mail
  1044.      to: <alife@ai.mit.edu>.
  1045.  
  1046.   ECAL: European Conference on Artificial Life
  1047.      Proceedings of the 1st European Conference on Artificial Life, (1991)
  1048.      F.J.  Varela  and  P.  Bourgine  (eds), [ECAL91] and Proc. of the 2nd
  1049.      European Conf. on Alife:  Self-organization  and  life,  from  simple
  1050.      rules  to  global complexity, (1993) [..] (eds), [ECAL93] (to appear)
  1051.      published by MIT Press, Cambridge, MA, USA.
  1052.  
  1053.   ECML: European Conference on Machine Learning
  1054.      Machine Learning: ECML-93, Proc. European Conf. on Machine  Learning,
  1055.      (1993)  P.B.  Brazil  (ed), [ECML93] published by Springer, New York,
  1056.      NY, USA.
  1057.  
  1058.   SAB: International Conference on Simulation of Adaptive Behavior
  1059.      From  Animals  to  Animats.  Proceedings  of  the  1st  International
  1060.      Conference  on  Simulation of Adaptive Behavior, (1991) [SAB90] J.-A.
  1061.      Meyer and S.W. Wilson, ISBN 0-262-63138-5, and Proc. of the 2nd Int'l
  1062.      Conf.  on  Simulation  of  Adaptive  Behavior,  (1993) [SAB92], J.-A.
  1063.      Meyer, H. Roitblat and S.W. Wilson (eds) and Proc. of the  3rd  Int'l
  1064.      Conf.  on  Simulation  of  Adaptive Behavior, (to appear) [SAB94], P.
  1065.      Husbands, J.-A. Meyer and S.W. Wilson (eds) published by  MIT  Press,
  1066.      Cambridge, MA, USA.
  1067.  
  1068.      SAB94  will  take  place  on August 8-12, 1994 in Brighton, UK.  Send
  1069.      general queries to: <sab94@cogs.susx.ac.uk>
  1070.  
  1071.  3. Pointers to upcoming Conferences:
  1072.   The Genetic Algorithm Digest
  1073.      Aka "GA-Digest" always starts with a "Calendar of GA-related Events,"
  1074.      i.e.   a list of upcoming conferences, covering the complete field of
  1075.      EAs. (cf Q15)
  1076.  
  1077.  
  1078.  
  1079. Issue 1.10               Posted: 20 December 1993                       16
  1080.  
  1081.  
  1082.  
  1083.  
  1084.  
  1085.  
  1086.  
  1087. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1088.  
  1089.  
  1090.  
  1091.   The Artificial Life Digest
  1092.      Aka "Alife digest" always starts with a  "Calendar  of  Alife-related
  1093.      Events," that lists conferences, workshops, etc. (cf Q15)
  1094.  
  1095.   The Evolutionary Programming Digest
  1096.      Aka   "EP-digest"  doesn't  list  conferences  explicitly,  like  the
  1097.      previously mentioned ones, but carries most CFP's; that can be looked
  1098.      at   in   the   backissues  folder  as:  "magenta.me.fau.edu:/pub/ep-
  1099.      list/digest/vX.YYY.Z" (cf Q15)
  1100.  
  1101.  
  1102. A13) Evolutionary Computation Associations?
  1103.   ISGA: International Society on Genetic Algorithms
  1104.      The  ISGA  is  a  mostly  fascinating   society:  it  neither  has  a
  1105.      membership  fee  (which  makes  it  even  more  fascinating),  nor an
  1106.      address. However,  ISGA  meetings  usually  take  place  during  ICGA
  1107.      conferences,  in  so-called  business  meetings  (BMs). [eds note: So
  1108.      during a conference, ask for BMs, if you want to join; or be ready to
  1109.      dart out of the room if you don't...]
  1110.  
  1111.   EPS: Evolutionary Programming Society
  1112.      Membership is $40/year ($10/year for students with id) and also gives
  1113.      you a discounted registration at the annual conference. You can  also
  1114.      order EP proceedings ($30/members, $45/other) from EPS.
  1115.  
  1116.      Address: Evolutionary Programming Society, 9363 Towne Centre Dr., San
  1117.      Diego, CA 92121, Attn: Bill Porto, Treasurer.
  1118.  
  1119.  
  1120. A14) Available technical reports?
  1121.  TCGA Reports
  1122.      The Clearing House for GENETIC  ALGORITHMs  (TCGA)  distributes  TCGA
  1123.      technical reports.
  1124.  
  1125.      Contact:   Robert   Elliott   Smith,  Department  of  Engineering  of
  1126.      Mechanics, Room 210 Hardaway Hall, The University  of  Alabama,  P.O.
  1127.      Box  870278,  Tuscaloosa,  AL  35487, USA.  Tel: (205) 348-1618, Fax:
  1128.      (205) 348-6419, Net: <rob@comec4.mh.ua.edu>.
  1129.  
  1130.  IlliGAL Reports
  1131.      The Illinois  GENETIC  ALGORITHMs  Laboratory  (IlliGAL)  distributes
  1132.      IlliGAL technical reports, as well as reprints of other publications;
  1133.      they are available in hardcopy and can be ordered  from  the  IlliGAL
  1134.      librarian.
  1135.  
  1136.      Contact:  Eric  Thompson,  IlliGAL  Librarian,  Department of General
  1137.      Engineering, 117 Transportation Building, 104 South  Mathews  Avenue,
  1138.      Urbana,    IL   61801-2996,   USA.    Tel:   (217)   333-2346,   Net:
  1139.      <library@gal1.ge.uiuc.edu>.
  1140.  
  1141.  
  1142.  
  1143.  
  1144.  
  1145. Issue 1.10               Posted: 20 December 1993                       17
  1146.  
  1147.  
  1148.  
  1149.  
  1150.  
  1151.  
  1152.  
  1153. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1154.  
  1155.  
  1156.  
  1157.      NOTE: When ordering, please include your surface mail address!
  1158.  
  1159.      IlliGAL just entered the Internet Age with an  anonymous-FTP  server,
  1160.      making  most  of  the  existing IlliGAL reports, and all future ones,
  1161.      available in electronic form from host: gal4.ge.uiuc.edu in directory
  1162.      "/pub/papers/IlliGALs".
  1163.  
  1164.  SyS Reports
  1165.      The  Systems  Analysis  Research  Group  (SyS)  at  the University of
  1166.      Dortmund,   maintains   an   experimental   anonymous   ftp   server:
  1167.      lumpi.informatik.uni-dortmund.de  (129.217.36.140).  Please give your
  1168.      complete e-mail address as password.  On  lumpi  you  can  find  SyS-
  1169.      Reports  from  1992  on.  (Get  "/pub/ls-Ral.Z" and look for "papers"
  1170.      folders, the server is sorted by EA paradigms, i.e.  "/pub/GA/papers"
  1171.      contains  papers  related to GAs, etc.).  A strongly recommended, and
  1172.      quarterly updated, report is a list of current applications  of  GAs,
  1173.      EP and ESs; get "/pub/EA/papers/ea-app.ps.gz" (SyS-2/92).
  1174.  
  1175.  Bionics Reports
  1176.      The  Bionics  and  Evolution  Techniques  Laboratory at the Technical
  1177.      University  of  Berlin  maintains  an  anonymous  ftp  server:   ftp-
  1178.      bionik.fb10.tu-berlin.de  (130.149.192.50).   On  ftp-bionik you find
  1179.      reports  and  software,  related  to  Evolutionary   Algorithms   and
  1180.      Artificial Neural Networks.
  1181.  
  1182.  
  1183. A15) Other sources of information?
  1184. A15.1) Electronic Digests?
  1185.  Genetic Algorithm Digest
  1186.      The  GA  research  community exchanges news, CFP's, etc. through this
  1187.      digest, currently moderated by Connie Ramsey and formerly by Alan  C.
  1188.      Schultz, Naval Research Laboratory, Washington, DC 20375-5000, USA.
  1189.  
  1190.      A  recently published statistic (v7,i3) states that GA-digest is sent
  1191.      out to world-wide 1800 addresses in 28 countries.
  1192.  
  1193.      o  Send submissions to <ga-list@aic.nrl.navy.mil>
  1194.  
  1195.      o  Send administrative requests to <ga-list-REQUEST@aic.nrl.navy.mil>
  1196.  
  1197.      o  Anonymous    ftp    archive:    ftp.aic.nrl.navy.mil    (Info   in
  1198.     "/pub/galist/FTP")
  1199.  
  1200.      o  Conference announcements "/pub/galist/information/conferences"
  1201.  
  1202.  Artificial Life Digest
  1203.      The ALIFE research community exchanges news, CFP's, etc. through this
  1204.      digest, edited by Liane Gabora and Rob Collins of the Artificial Life
  1205.      Research Group at UCLA.
  1206.  
  1207.      o  Send submissions to <alife@cognet.ucla.edu>
  1208.  
  1209.  
  1210.  
  1211. Issue 1.10               Posted: 20 December 1993                       18
  1212.  
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1220.  
  1221.  
  1222.  
  1223.      o  Send administrative requests to <alife-REQUEST@cognet.ucla.edu>
  1224.  
  1225.      o  Anonymous  ftp  archive:  ftp.cognet.ucla.edu  (128.97.50.19)   in
  1226.     "~ftp/pub/alife"
  1227.  
  1228.  Evolutionary Programming Digest
  1229.      The  digest  is  intended  to  promote discussions on a wide range of
  1230.      technical issues in evolutionary optimization,  as  well  as  provide
  1231.      information   on  upcoming  conferences,  events,  journals,  special
  1232.      issues, and other items of interest to the EP community.  Discussions
  1233.      on  all  areas  of  EVOLUTIONARY  COMPUTATION are welcomed, including
  1234.      ARTIFICIAL LIFE, EVOLUTION STRATEGIEs, and GENETIC  ALGORITHMs.   The
  1235.      digest  is meant to encourage interdisciplinary communications.  Your
  1236.      suggestions and comments regarding the digest are always welcome.
  1237.  
  1238.      o  Send       administrative       requests       to        <ep-list-
  1239.     REQUEST@magenta.me.fau.edu>
  1240.  
  1241.      To    subscribe    to    the   digest,   send   mail   to   <ep-list-
  1242.      REQUEST@magenta.me.fau.edu> and include the line "subscribe  ep-list"
  1243.      in  the  body  of  the  text.   Further instructions will follow your
  1244.      subscription.  The digest is  moderated  by  N.  Saravan  of  Florida
  1245.      Atlantic University.
  1246.  
  1247. A15.2) Electronic Mailing Lists?
  1248.  Genetic Programming Mailing List
  1249.      The  GP community uses this list as a discussion forum, news exchange
  1250.      and FAQ distribution channel, edited by John Koza and James  Rice  at
  1251.      Stanford.
  1252.  
  1253.      o  Send submissions to <genetic-programming@cs.stanford.edu>
  1254.  
  1255.      o  Send     administrative    requests    to    <genetic-programming-
  1256.     REQUEST@cs.stanford.edu>
  1257.  
  1258.      o  Anonymous  ftp   archive:   ftp.cc.utexas.edu   in   "pub/genetic-
  1259.     programming"
  1260.  
  1261.      o  Contains  a lengthy, but "mostly interesting" FAQ by James Rice on
  1262.     GP related subjects.
  1263.  
  1264.  Tierra Mailing List
  1265.      Thomas Ray's Tierra is discussed elsewhere (cf Q4.1); here's  how  to
  1266.      obtain Tierra electronically and get in contact with other users.
  1267.  
  1268.      o  Send submissions to <tierra-ANNOUNCE@life.slhs.udel.edu>
  1269.  
  1270.      o  Send        administrative        requests       to       <tierra-
  1271.     REQUEST@life.slhs.udel.edu>
  1272.  
  1273.      o  Anonymous  ftp  archive:  tierra.slhs.udel.edu  (tierra,   almond,
  1274.  
  1275.  
  1276.  
  1277. Issue 1.10               Posted: 20 December 1993                       19
  1278.  
  1279.  
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1286.  
  1287.  
  1288.  
  1289.     beagle, etc.)
  1290.  
  1291.  GA-Molecule mailing list
  1292.      o  Send submissions to <GA-MOLECULE@TAMMY.HARVARD.EDU>
  1293.  
  1294.      o  All   administrative  details  are  available  from  <GA-MOLECULE-
  1295.     REQUEST@TAMMY.HARVARD.EDU>
  1296.  
  1297.  UK's Evolutionary-Computation mailing list
  1298.      o  Send submissions to <EVOLUTIONARY-COMPUTING@MAILBASE.AC.UK>
  1299.  
  1300.      o  All  administrative  details  are  available  from  <EVOLUTIONARY-
  1301.     COMPUTING-REQUEST@MAILBASE.AC.UK>
  1302.  
  1303. A15.3) Electronic Access to Research Institutes?
  1304.  The Santa Fe Institute
  1305.      The  Santa  Fe  Institute Studies in the Sciences of Complexity (SFI)
  1306.      issues  a  recommended  series:  SFI  Studies  in  the   Science   of
  1307.      Complexity,  published  by Addison Wesley and maintains a well-sorted
  1308.      ftp server with EC related material.
  1309.  
  1310.      o  Send administrative requests to <ftp@santafe.edu>
  1311.  
  1312.      o  Anonymous ftp archive: ftp.santafe.edu in "/pub"
  1313.  
  1314.      For  example,  SAFIER,  the   SAnta   Fe   Institute's   Evolutionary
  1315.      computation  Repository,  is  avail. under "/pub/EC".  You should get
  1316.      "The Navigator's Guide to SAFIER", a handbook to this service:
  1317.  
  1318.      o  ftp.santafe.edu:/pub/EC/handbook/safier.ps.gz (A4 paper) and
  1319.  
  1320.      o  ftp.santafe.edu:/pub/EC/handbook/safier-US.ps.gz (US  letter  size
  1321.     paper).
  1322.  
  1323.      Additionally,  you  can  telnet bbs.santafe.edu and login as "bbs" to
  1324.      get access to the Santa Fe Institute's bulletin  board  system.  It's
  1325.      administrator Scott D. Yelich <scott@santafe.edu> is actively seeking
  1326.      information on any complex system  information  for  the  BBS.   This
  1327.      includes  CAs,  GAs,  ALIFE  or  almost anything else related to this
  1328.      field. You will also find infos on SUMMERSCHOOLs held by the SFI.
  1329.  
  1330.  The Australian National University (ANU)
  1331.      The Bioinformatics facility at Australian National University has set
  1332.      up  an  anonymous  ftp  server,  that  contains  EC related material,
  1333.      maintained by David G. Green.
  1334.  
  1335.      o  Send    administrative    requests    to    David     G.     Green
  1336.     <david.green@anu.edu.au>
  1337.  
  1338.      o  Anonymous ftp archive: life.anu.edu.au:/pub/complex_systems/alife
  1339.  
  1340.  
  1341.  
  1342.  
  1343. Issue 1.10               Posted: 20 December 1993                       20
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1352.  
  1353.  
  1354.  
  1355.      o  Gopher protocol: Besides direct access to all FTP information, the
  1356.     gopher server offers online access to relevant newsgroups,  online
  1357.     databases and direct links to relevant international services.
  1358.  
  1359.       Name=Complex systems
  1360.       Host=life.anu.edu.au
  1361.       Type=1
  1362.       Port=70
  1363.       Path=1/complex_systems
  1364.  
  1365.      o  World  Wide  Web protocol: Besides access to all of the above, the
  1366.     hypermedia server offers  introductory  tutorials,  preprints  and
  1367.     papers     online.     The     URL    for    this    service    is
  1368.     "http://life.anu.edu.au/complex_systems/complex.html" or link  via
  1369.     the servers home page "http://life.anu.edu.au/".
  1370.  
  1371. A15.4) Relevant Electronic News and FAQs?
  1372.      Besides   the   obvious   comp.ai.genetic,  there  exist  some  other
  1373.      newsgroups that sometimes carry EC related topics:
  1374.  
  1375.      o  comp.ai (FAQ in news.answers, comp.answers)
  1376.  
  1377.      o  comp.ai.fuzzy (FAQ in news.answers, comp.answers)
  1378.  
  1379.      o  comp.ai.jair.announce (FAQ in news.answers, comp.answers)
  1380.  
  1381.      o  comp.ai.jair.papers  (PostScript  papers  of  the  Journal  of  AI
  1382.     Research, published by Morgan Kaufmann <morgan@unix.sri.com>) [eds
  1383.     note: this is the first journal  that's  completely  published  on
  1384.     USENET  first,  and later in paper form; read the jair-faq, that's
  1385.     posted to the announcement group to find out how  to  submit  your
  1386.     papers, get JAIR papers by FTP, Gopher or e-mail, etc.]
  1387.  
  1388.      o  comp.ai.neural-nets (FAQ in news.answers, comp.answers)
  1389.  
  1390.      o  comp.robotics (FAQ in news.answers, comp.answers)
  1391.  
  1392.      o  comp.theory.cell-automata (no FAQ)
  1393.  
  1394.      o  comp.theory.dynamic-sys (no FAQ)
  1395.  
  1396.      o  comp.theory.self-org-sys (no FAQ)
  1397.  
  1398.      o  sci.math.num-analysis (some FAQs in news.answers, sci.answers)
  1399.  
  1400.      o  sci.op-research (some FAQs in news.answers, sci.answers)
  1401.  
  1402.  
  1403. A15.5) What about all these Internet Services?
  1404.      The  better part of the following explanations have been adapted with
  1405.      kind permission from version 1.6 of Smith (1993).
  1406.  
  1407.  
  1408.  
  1409. Issue 1.10               Posted: 20 December 1993                       21
  1410.  
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416.  
  1417. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1418.  
  1419.  
  1420.  
  1421.  Access Tools
  1422.      All Internet tools share the  quirk  that  they  are  actually  three
  1423.      things:  a  "server"  or "daemon" program that runs all the time on a
  1424.      host computer and accepts requests to connect over  the  Internet,  a
  1425.      "client"  program  that  people  use  to  connect  to or access these
  1426.      servers, and a standard protocol that allows many different  versions
  1427.      of clients and servers to talk to one another without difficulty.
  1428.  
  1429.      Most  of  the  recently  published  books about the Internet describe
  1430.      these tools in detail.   Kehoe  (1992),  the  first  to  appear,  was
  1431.      offered  first in a free electronic version over the Internet;  it is
  1432.      still available from many anonymous FTP archives around the world, in
  1433.      a  directory named something like pub/zen/.  Krol (1992) has received
  1434.      excellent reviews.  See the references for other books.
  1435.  
  1436.      A new item:  the EARN Association has published a  Guide  to  Network
  1437.      Resource  Tools  (May  3,  1993),  which is available via e-mail from
  1438.      <listserv@EARNCC.bitnet>, by sending the message  "get  nettools  ps"
  1439.      for  a  PostScript  version  or  "get nettools memo" for a plain text
  1440.      version.   The  guide  covers  almost  every  tool  mentioned   here,
  1441.      including example.
  1442.  
  1443.      A  few  host  computers  mentioned  in this guide allow the public to
  1444.      telnet to the host, and then use the host computer to access  servers
  1445.      via  gopher,  WAIS  or  the Web.  These arrangements are offered as a
  1446.      courtesy to those  people  who  do  not  have  the  necessary  client
  1447.      software  on  their own computers, and want to try these tools before
  1448.      going to the trouble of installing the  client  software  themselves.
  1449.      Although  licensing  has  been  discussed  for  some  of  these tools
  1450.      (namely, certain versions of gopher), at present they are  all  free,
  1451.      and  several  are  explicitly  in the public domain or carry free GNU
  1452.      licenses.
  1453.  
  1454.  Telnet
  1455.      Telnet is a protocol whereby someone who is logged onto an account on
  1456.      a computer with full Internet access can access another computer over
  1457.      the Internet and login there, assuming he or she has login privileges
  1458.      on that computer as well. Anonymous telnet sessions are generally not
  1459.      permitted, but occasionally usernames  are  created  with  restricted
  1460.      privileges, for use by the Internet public.
  1461.  
  1462.  Anonymous FTP
  1463.      FTP  stands  for file transfer protocol, and is the name of a program
  1464.      used for file transfers between computers with full Internet  access,
  1465.      assuming  you have privileges on both the local and remote computers.
  1466.      Anonymous FTP is a common practice whereby anyone on the Internet may
  1467.      transfer  files  from  (and  sometimes  to)  a remote system with the
  1468.      userid  "anonymous"  and  an  arbitrary  password.   By   convention,
  1469.      anonymous  FTP  users provide their e-mail addresses when asked for a
  1470.      password.  This is useful to those archive managers who must  justify
  1471.      to  their  bosses  the time spent providing this free (but not cheap)
  1472.  
  1473.  
  1474.  
  1475. Issue 1.10               Posted: 20 December 1993                       22
  1476.  
  1477.  
  1478.  
  1479.  
  1480.  
  1481.  
  1482.  
  1483. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1484.  
  1485.  
  1486.  
  1487.      service.  Some sites restrict when transfers may be made  from  their
  1488.      archives,  and  most  prefer that large transfers be made only during
  1489.      off-hours (relative to that site).
  1490.  
  1491.      To receive a short guide to using anonymous FTP, send e-mail with the
  1492.      text "help" to <info@sunsite.unc.edu>.
  1493.  
  1494.  Anonymous FTP by E-mail
  1495.      Bitnet does not support telnet or ftp sessions, but many Bitnet nodes
  1496.      are also Internet nodes, and so do support telnet and ftp. For  those
  1497.      people  who  only  have  access  to  computers  on  Bitnet, Princeton
  1498.      University   offers   a   file   transfer    service    by    e-mail.
  1499.      <bitftp@pucc.bitnet> will send a help file in response to the message
  1500.      "help". There is also a BITFTP server in Germany: <bitftp@dearn> from
  1501.      within  BITNET/EARN/NetNorth or <bitftp@vm.gmd.de> from the Internet.
  1502.      This server should be used only for ftp requests involving  transfers
  1503.      within Europe. Those people who have neither full Internet access nor
  1504.      an account on a Bitnet node can retrieve  files  from  anonymous  ftp
  1505.      archives  by  e-mail courtesy of <ftpmail@decwrl.dec.com>, which will
  1506.      send instructions in response to  the  words  "help"  and  "quit"  on
  1507.      separate lines of an e-mail message.
  1508.  
  1509.      Here  is  an  example of how to send for a document on the archive at
  1510.      rtfm.mit.edu. This example will return a list of all the FAQs  stored
  1511.      in  the directory pub/usenet/news.answers/, and a copy of this guide.
  1512.      Send the message
  1513.  
  1514.       send usenet/news.answers/index
  1515.       send usenet/news.answers/ai-faq/genetic/part1
  1516.       send usenet/news.answers/ai-faq/genetic/part2
  1517.       send usenet/news.answers/ai-faq/genetic/part3
  1518.       quit
  1519.  
  1520.      by e-mail to <mail-server@rtfm.mit.edu>.
  1521.  
  1522.  Gopher
  1523.      Gopher is a user-interface program that makes ftp and other types  of
  1524.      connections for computer users when they select an item in a menu. It
  1525.      is an easy way to get stuff off the Internet without having  to  know
  1526.      where  the  stuff  lives. Gopher is free, and there are nice versions
  1527.      for most types of computers, especially Unix workstations  and  Macs.
  1528.      It  was invented at the University of Minnesota; current versions can
  1529.      be retrieved via anonymous ftp from boombox.micro.umn.edu.  The  name
  1530.      is  a  clever  pun on the "go-for" person who runs errand for people,
  1531.      and on the burrowing rodent, which pops down a "hole" in the Internet
  1532.      and  comes  back  up who-knows-where.  comp.infosystems.gopher is the
  1533.      newsgroup for gopher-related issues in  general.  The  FAQ  for  this
  1534.      group     is     stored     on     rtfm.mit.edu     in    the    file
  1535.      "pub/usenet/news.answers/gopher-faq".  There is an entire chapter  on
  1536.      gopher in Krol (1992).
  1537.  
  1538.  
  1539.  
  1540.  
  1541. Issue 1.10               Posted: 20 December 1993                       23
  1542.  
  1543.  
  1544.  
  1545.  
  1546.  
  1547.  
  1548.  
  1549. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1550.  
  1551.  
  1552.  
  1553.  Archie
  1554.      Archie  is  a program that helps people locate software in any of the
  1555.      thousands of anonymous ftp archives around the world. A copy  of  the
  1556.      software  can  be retrieved via anonymous ftp from any archie server,
  1557.      including  ftp.cs.widener.edu,  in  the  /archie/clients/  directory.
  1558.      There  are  versions of archie for all sorts of Unix systems, as well
  1559.      as VMS and PCs running a variety of network software. Good places  to
  1560.      look  for  help  installing  archie on any computer are from <archie-
  1561.      admin@ans.net> or bionet.users.addresses. Documentation is  available
  1562.      via  anonymous  ftp on ftp.ans.net in the /pub/archie/doc/ directory,
  1563.      or by e-mail from <archie-admin@ans.net>.
  1564.  
  1565.      Archie can be used via e-mail, by  sending  e-mail  with  a  list  of
  1566.      commands  to <archie@ans.net>.  For details, send the command "help".
  1567.      Due to the very high demand for this service, requests should be made
  1568.      via  e-mail  or  clients  rather than telnet-ing to an archie server.
  1569.      Please try to use archie only outside of  working  hours,  make  your
  1570.      query as specific as possible, and use the archie server nearest you:
  1571.      archie.au  in  Australia;  archie.funet.fi  in  Finland;   archie.th-
  1572.      darmstadt.de   in  Germany;  archie.doc.ic.ac.uk  in  Great  Britain;
  1573.      archie.cs.huji.ac.il   in   Israel;   archie.kuis.kyoto-u.ac.jp   and
  1574.      archie.wide.ad.jp  in  Japan; archie.sogang.ac.kr in Korea; archie.nz
  1575.      in  New  Zealand;  archie.luth.se  in  Sweden;  archie.ncu.edu.tw  in
  1576.      Taiwan;   archie.ans.net,   archie.rutgers.edu,  archie.sura.net  and
  1577.      archie.unl.net in the United States.
  1578.  
  1579.  Veronica
  1580.      Veronica  is  a  very  easy   rodent-oriented   net-wide   index   to
  1581.      computerized  archives.  Veronica's name is a play on the concepts of
  1582.      both gopher and archie.  (Remember the comic book couple  Archie  and
  1583.      Veronica?   Veronica  does  for gopher what archie does for anonymous
  1584.      FTP.)  Veronica searches through hundreds of gopher holes looking for
  1585.      anything that matches a keyword supplied by the user, and assembles a
  1586.      list of  gopher  servers  that  contain  items  of  interest.   Note:
  1587.      veronica checks *titles* of gopher items only, not their contents.
  1588.  
  1589.      At  present,  there  are  no  veronica clients;  veronica is a gopher
  1590.      tool.   An   informal   veronica   FAQ   is   posted   regularly   in
  1591.      comp.infosystems.gopher   and  archived  on  veronica.scs.unr.edu  as
  1592.      veronica/veronica-faq.
  1593.  
  1594.  Wide Area Information Servers (WAIS)
  1595.      The  idea  behind  WAIS  is  to  make  anonymous  FTP  archives  more
  1596.      accessible   by  indexing  their  contents  for  easy  searching  and
  1597.      browsing.  The client's user interface is simple, but the concept  is
  1598.      so  powerful  that  nearly everyone with an anonymous FTP archive has
  1599.      spent part of 1992 and 1993 building WAIS indices  of  all  available
  1600.      material  (software,  data, documents and other information).  In the
  1601.      course of all this effort an enormous amount of information that  has
  1602.      been available for years or even decades has suddenly become publicly
  1603.      available for the first time all in the past year.  WAIS servers  are
  1604.  
  1605.  
  1606.  
  1607. Issue 1.10               Posted: 20 December 1993                       24
  1608.  
  1609.  
  1610.  
  1611.  
  1612.  
  1613.  
  1614.  
  1615. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1616.  
  1617.  
  1618.  
  1619.      often  used  as back-end engines for gopher servers.  Gopher archives
  1620.      are built by hand, but  WAIS  bundles  and  organizes  related  items
  1621.      automatically,  and thus greatly extends the functionality of gopher.
  1622.  
  1623.      Good WAIS client programs for the Mac (WAIStation)  and  PC  (PCWAIS)
  1624.      are  available  on  the  anonymous  ftp archive at think.com. If your
  1625.      computer has full Internet access, you can try out  WAIS  on  a  Unix
  1626.      system,  courtesy  of  Thinking  Machines  Corp.,  by  telnetting  to
  1627.      quake.think.com. Use the username "wais" and give your e-mail address
  1628.      as  the  password.  See  the newsgroup comp.infosystems.wais for more
  1629.      details. The FAQ for this group is stored on rtfm.mit.edu in the file
  1630.      "pub/usenet/news.answers/wais-faq/getting-started".
  1631.  
  1632.  The World-Wide Web (WWW)
  1633.      The   World-Wide  Web  is  yet  another  tool  for  gathering  useful
  1634.      information from the  Internet.  It  was  invented  at  the  European
  1635.      Particle Physics Laboratory (CERN), Switzerland. The Web looks like a
  1636.      document that users can open and read, but clicking on certain  words
  1637.      causes other documents to be retrieved and opened for inspection. The
  1638.      most powerful aspect of the Web at present is  the  ease  with  which
  1639.      seamless,  attractive  online  documentation  can be created, that is
  1640.      easy to find and browse, no matter where on the Internet  the  actual
  1641.      documents  are.  You  can  try  the  Web, courtesy of CERN: telnet to
  1642.      info.cern.ch  (no  username  needed).   WWW  features  a   remarkably
  1643.      beautiful X interface called xmosaic(1).
  1644.  
  1645.      References
  1646.  
  1647.      Kehoe,  B.P.  (1992)  "Zen  and the Art of the Internet: A Beginner's
  1648.      Guide to the Internet", 2nd Edition (July). Prentice Hall,  Englewood
  1649.      Cliffs,  NJ.  112  pages. The 1st Edition, (February) is available in
  1650.      PostScript format via anonymous ftp from ftp.cs.widener.edu and  many
  1651.      other Internet archives.
  1652.  
  1653.      Krol,  E.  (1992)  "The  Whole  Internet:  Catalog  &  User's Guide".
  1654.      O'Reilly & Associates, Inc., Sebastopol, CA. 376 pages.
  1655.  
  1656.      LaQuey, T. and J.C. Ryer (1992) "The Internet Companion: A Beginner's
  1657.      Guide  to Global Networking". Addison-Wesley Publishing Co., Reading,
  1658.      MA. 208 pages.
  1659.  
  1660.      Smith, Una R. (1993) "A Biologist's  Guide  to  Internet  Resources."
  1661.      Usenet  sci.answers.   Available via gopher, anonymous FTP and e-mail
  1662.      from many archives.  For a free copy via e-mail, send the text  "send
  1663.      pub/usenet/sci.answers/biology/guide/*"  to  the e-mail address mail-
  1664.      server@rtfm.mit.edu.  ~45 pages.
  1665.  
  1666.      Gaffin, A. (1993) "The Big Dummy's Guide to the Internet."  Published
  1667.      by the Electronic Frontier Foundation (EFF).  Available via anonymous
  1668.      FTP from ftp.eff.org as  file(s)  /pub/Net_info/Big_Dummy/big-dummys-
  1669.      guide.txt     (ASCII)     and     /pub/Net_info/Big_Dummy/big-dummys-
  1670.  
  1671.  
  1672.  
  1673. Issue 1.10               Posted: 20 December 1993                       25
  1674.  
  1675.  
  1676.  
  1677.  
  1678.  
  1679.  
  1680.  
  1681. FAQ(2/3)                          ANSWERS                         FAQ(2/3)
  1682.  
  1683.  
  1684.  
  1685.      guide.sea.hqx (Macintosh HyperCard stack).
  1686.  
  1687.      Gaffin, A. with Heitkoetter, J. (1993, 1994) "The Big  Dummy's  Guide
  1688.      to  the  Internet:  A  round  trip  through  Global Networks, Life in
  1689.      Cyberspace, and Everything...", aka `bdgtti.texi' is  also  available
  1690.      from  ftp.eff.org  in /pub/Net_info/Big_Dummy/Big_Dummys_Guide_Texi/*
  1691.      (Texinfo, ASCII, HTML, DVI and PostScript).  The European edition  is
  1692.      kept  on  ftp.germany.eu.net  under  /pub/books/big-dummys-guide/big-
  1693.      dummys-guide-texi. ~250 pages.
  1694.  
  1695.  
  1696.  
  1697.  
  1698.  
  1699.  
  1700.  
  1701.  
  1702.  
  1703.  
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711.  
  1712.  
  1713.  
  1714.  
  1715.  
  1716.  
  1717.  
  1718.  
  1719.  
  1720.  
  1721.  
  1722.  
  1723.  
  1724.  
  1725.  
  1726.  
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734.  
  1735.  
  1736.  
  1737.  
  1738.  
  1739. Issue 1.10               Posted: 20 December 1993                       26
  1740.  
  1741.  
  1742.  
  1743. -- 
  1744.  
  1745.     -joke
  1746.  
  1747. --
  1748. Joerg Heitkoetter
  1749. Systems Analysis Group                     "Why was I born with such
  1750. University of Dortmund, Germany             contemporaries?"
  1751. <joke@ls11.informatik.uni-dortmund.de>                -- Oscar Wilde
  1752.