netlogo 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. Copyright Information
  2. NetLogo 2.1.0 User Manual
  3. Copyright 1999 by Uri Wilensky. All rights reserved.
  4. The NetLogo software, models and documentation are distributed free of
  5. charge for use by the public to explore and construct models. Permission
  6. to copy or modify the NetLogo software, models and documentation for
  7. educational and research purposes only and without fee is hereby
  8. granted, provided that this copyright notice and the original author's
  9. name appears on all copies and supporting documentation. For any other
  10. uses of this software, in original or modified form, including but not
  11. limited to distribution in whole or in part, specific prior permission
  12. must be obtained from Uri Wilensky. The software, models and
  13. documentation shall not be used, rewritten, or adapted as the basis of a
  14. commercial software or hardware product without first obtaining
  15. appropriate licenses from Uri Wilensky. We make no representations about
  16. the suitability of this software for any purpose. It is provided "as is"
  17. without express or implied warranty.
  18. To reference this software in academic publications, please use:
  19. Wilensky, U. (1999). NetLogo. http://ccl.northwestern.edu/netlogo/.
  20. Center for Connected Learning and Computer-Based Modeling, Northwestern
  21. University, Evanston, IL.
  22. The project gratefully acknowledges the support of the National Science
  23. Foundation (REPP and ROLE Programs) -- grant numbers REC #9814682 and
  24. REC #0126227.
  25. ------------------------------------------------------------------------
  26. For random number generation, NetLogo uses the MersenneTwisterFast class
  27. by Sean Luke. The copyright for that code is as follows:
  28. Copyright (c) 2003 by Sean Luke.
  29. Portions copyright (c) 1993 by Michael Lecuyer.
  30. All rights reserved.
  31. Redistribution and use in source and binary forms, with or without
  32. modification, are permitted provided that the following conditions are met:
  33. * Redistributions of source code must retain the above copyright
  34. notice, this list of conditions and the following disclaimer.
  35. * Redistributions in binary form must reproduce the above copyright
  36. notice, this list of conditions and the following disclaimer in
  37. the documentation and/or other materials provided with the
  38. distribution.
  39. * Neither the name of the copyright owners, their employers, nor the
  40. names of its contributors may be used to endorse or promote
  41. products derived from this software without specific prior written
  42. permission.
  43. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  44. IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
  45. TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  46. PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  47. OWNERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  48. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  49. TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  50. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  51. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  52. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  53. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  54. ------------------------------------------------------------------------
  55. Parts of NetLogo (specifically, the random-gamma primitive) are based on
  56. code from the Colt library (http://hoschek.home.cern.ch/hoschek/colt/).
  57. The copyright for that code is as follows:
  58. Copyright 1999 CERN - European Organization for Nuclear Research.
  59. Permission to use, copy, modify, distribute and sell this software and
  60. its documentation for any purpose is hereby granted without fee,
  61. provided that the above copyright notice appear in all copies and that
  62. both that copyright notice and this permission notice appear in
  63. supporting documentation. CERN makes no representations about the
  64. suitability of this software for any purpose. It is provided "as is"
  65. without expressed or implied warranty.
  66. ------------------------------------------------------------------------
  67. NetLogo uses the MRJ Adapter library, which is Copyright (c) 2003 Steve
  68. Roy <sroy@roydesign.net>. The library is covered by the GNU LGPL (Lesser
  69. General Public License). The text of that license is included in the
  70. "docs" folder which accompanies the NetLogo download, and is also
  71. available from http://www.gnu.org/copyleft/lesser.html.
  72. ------------------------------------------------------------------------
  73. For movie-making, NetLogo uses code adapted from
  74. sim.util.media.MovieEncoder.java by Sean Luke, distributed under the
  75. MASON Open Source License. The copyright for that code is as follows:
  76. This software is Copyright 2003 by Sean Luke. Portions Copyright 2003 by
  77. Gabriel Catalin Balan, Liviu Panait, Sean Paus, and Dan Kuebrich. All
  78. Rights Reserved.
  79. Developed in Conjunction with the George Mason University Center for
  80. Social Complexity
  81. By using the source code, binary code files, or related data included in
  82. this distribution, you agree to the following terms of usage for this
  83. software distribution. All but a few source code files in this
  84. distribution fall under this license; the exceptions contain open source
  85. licenses embedded in the source code files themselves. In this license
  86. the Authors means the Copyright Holders listed above, and the license
  87. itself is Copyright 2003 by Sean Luke.
  88. The Authors hereby grant you a world-wide, royalty-free, non-exclusive
  89. license, subject to third party intellectual property claims:
  90. to use, reproduce, modify, display, perform, sublicense and distribute
  91. all or any portion of the source code or binary form of this software or
  92. related data with or without modifications, or as part of a larger work;
  93. and under patents now or hereafter owned or controlled by the Authors,
  94. to make, have made, use and sell ("Utilize") all or any portion of the
  95. source code or binary form of this software or related data, but solely
  96. to the extent that any such patent is reasonably necessary to enable you
  97. to Utilize all or any portion of the source code or binary form of this
  98. software or related data, and not to any greater extent that may be
  99. necessary to Utilize further modifications or combinations.
  100. In return you agree to the following conditions:
  101. If you redistribute all or any portion of the source code of this
  102. software or related data, it must retain the above copyright notice and
  103. this license and disclaimer. If you redistribute all or any portion of
  104. this code in binary form, you must include the above copyright notice
  105. and this license and disclaimer in the documentation and/or other
  106. materials provided with the distribution, and must indicate the use of
  107. this software in a prominent, publically accessible location of the
  108. larger work. You must not use the Authors's names to endorse or promote
  109. products derived from this software without the specific prior written
  110. permission of the Authors.
  111. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  112. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  113. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  114. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS, NOR THEIR EMPLOYERS,
  115. NOR GEORGE MASON UNIVERSITY, BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  116. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  117. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  118. DEALINGS IN THE SOFTWARE.
  119. ------------------------------------------------------------------------
  120. For movie-making, NetLogo uses code adapted from JpegImagesToMovie.java
  121. by Sun Microsystems. The copyright for that code is as follows:
  122. Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
  123. Sun grants you ("Licensee") a non-exclusive, royalty free, license to
  124. use, modify and redistribute this software in source and binary code
  125. form, provided that i) this copyright notice and license appear on all
  126. copies of the software; and ii) Licensee does not utilize the software
  127. in a manner which is disparaging to Sun.
  128. This software is provided "AS IS," without a warranty of any kind. ALL
  129. EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
  130. ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  131. PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS
  132. SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
  133. USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO
  134. EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT
  135. OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  136. PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  137. LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN
  138. IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  139. This software is not designed or intended for use in on-line control of
  140. aircraft, air traffic, aircraft navigation or aircraft communications;
  141. or in the design, construction, operation or maintenance of any nuclear
  142. facility. Licensee represents and warrants that it will not use or
  143. redistribute the Software for such purposes.