diff --git a/doc/files/LogoAgent.html b/doc/files/LogoAgent.html index 129c743..912f90d 100644 --- a/doc/files/LogoAgent.html +++ b/doc/files/LogoAgent.html @@ -65,6 +65,8 @@

logo

+ + @@ -94,6 +96,8 @@

Models

+ + @@ -117,6 +121,7 @@

Types

+ @@ -140,6 +145,10 @@

Types

+ + + + @@ -160,6 +169,12 @@

Functions

+
  • + Utils +
  • + + + diff --git a/doc/files/LogoModel.html b/doc/files/LogoModel.html index 8958fd6..8117544 100644 --- a/doc/files/LogoModel.html +++ b/doc/files/LogoModel.html @@ -65,6 +65,8 @@

    logo

    + + @@ -94,6 +96,8 @@

    Models

    + + @@ -115,6 +119,7 @@

    Types

    + @@ -138,6 +143,10 @@

    Types

    + + + + @@ -160,6 +169,12 @@

    Functions

    +
  • + Utils +
  • + + + diff --git a/doc/files/Utils.html b/doc/files/Utils.html new file mode 100644 index 0000000..e7bbf03 --- /dev/null +++ b/doc/files/Utils.html @@ -0,0 +1,350 @@ + + + + + Simple spatial ABM + + + + + + +
    +
    + +
    +
    +
    + +
    + + +
    +

    Utils + + +

    + + + + + + + + + + + + +

    Functions

    + + + + + + + + + + + + + + + +
    getLabyrinth  +Return a CellularSpace with the representation of a given labyrinth data available in the package.
    getSugar  +Return a CellularSpace with the representation of a given sugarscape data available in the package.
    + + + + + + + + +
    + + + + +

    + + getLabyrinth  + +

    +
    + + +Return a CellularSpace with the representation of a given labyrinth data available in the package. + + + + + +

    Arguments

    +
      + +
    • + #1: A string with the name of a labyrinth. +
    • + + +
    + + + + + + + +

    Usage

    +
    cs = getLabyrinth("room")
    + + + + +
    + + + + + + + +

    + + getSugar  + +

    +
    + + +Return a CellularSpace with the representation of a given sugarscape data available in the package. + + + + + +

    Arguments

    +
      + +
    • + #1: A string with the name of a sugarscape. +
    • + + +
    + + + + + + + +

    Usage

    +
    cs = getSugar("room")
    + + + + +
    + + + + +
    + + + + +
    +
    + +
    +

    Valid XHTML 1.0!

    +
    + +
    + + + diff --git a/doc/files/data.html b/doc/files/data.html index 7060ff5..00ae6f6 100644 --- a/doc/files/data.html +++ b/doc/files/data.html @@ -65,6 +65,8 @@

    logo

    + + @@ -94,6 +96,8 @@

    Models

    + + @@ -117,6 +121,7 @@

    Types

    + @@ -140,6 +145,10 @@

    Types

    + + + + @@ -162,6 +171,12 @@

    Functions

    +
  • + Utils +
  • + + + @@ -218,6 +233,11 @@

    Data

    crossRoom.labyrinth

    + + + +


    + A room with a cross in the middle. @@ -234,6 +254,11 @@

    Data

    default.sugar

    + + + +


    + The traditional sugarscape. @@ -250,6 +275,11 @@

    Data

    maze.labyrinth

    + + + +


    + A small maze. @@ -266,6 +296,11 @@

    Data

    room.labyrinth

    + + + +


    + An empty room. @@ -282,6 +317,11 @@

    Data

    small.sugar

    + + + +


    + A small sugarscape. diff --git a/doc/files/font.html b/doc/files/font.html index 1956eba..3b85f2a 100644 --- a/doc/files/font.html +++ b/doc/files/font.html @@ -68,6 +68,8 @@

    logo

    + + @@ -97,6 +99,8 @@

    Models

    + + @@ -120,6 +124,7 @@

    Types

    + @@ -143,6 +148,10 @@

    Types

    + + + + @@ -165,6 +174,12 @@

    Functions

    +
  • + Utils +
  • + + + diff --git a/doc/files/models.html b/doc/files/models.html index 3d7b4b5..773bf50 100644 --- a/doc/files/models.html +++ b/doc/files/models.html @@ -65,6 +65,8 @@

    logo

    + + @@ -94,6 +96,8 @@

    Models

    + + @@ -117,6 +121,7 @@

    Types

    + @@ -140,6 +145,10 @@

    Types

    + + + + @@ -162,6 +171,12 @@

    Functions

    +
  • + Utils +
  • + + + @@ -233,28 +248,42 @@

    Models

    + +

    GrowingSociety

    - Model where a given Society grows, filling the whole space. Agents reproduce with 20% of probability if there is an empty neighbor. + +


    + + Model where a given Society grows, filling the whole space. Agents reproduce with 20% of probability if there is an empty neighbor. +

    Labyrinth

    - A labyrynth, where agents move randomly from a given entrance until an exit point. There are some available labyrynths available. See the documentation of data. + +


    + + A labyrynth, where agents move randomly from a given entrance until an exit point. There are some available labyrynths available. See the documentation of data. +

    LifeCycle

    - A model where agents reproduce and die by age. Each Agent starts with age zero. From age 15 until 30 they have 30% of chance of reproducing if there is an empty neighbor cell. Agents have 5% of probability of dying each time step after age 20. + +


    + + A model where agents reproduce and die by age. Each Agent starts with age zero. From age 15 until 30 they have 30% of chance of reproducing if there is an empty neighbor cell. Agents have 5% of probability of dying each time step after age 20. + @@ -263,23 +292,37 @@

    Models

    Overpopulation

    - Model where Agents die by overpopulation. Each Agent beeds with a probability of 30% and die if there are more than three Agents in the neighborhood. + +


    + + Model where Agents die by overpopulation. Each Agent beeds with a probability of 30% and die if there are more than three Agents in the neighborhood. +

    SingleAgent

    - A single agent moving around randomly. + +


    + + A single agent moving around randomly. +

    Sugarscape

    - Model where a given Society grows, filling the whole space. Agents reproduce with 20% of probability if there is an empty neighbor. + +


    + + Model where a given Society grows, filling the whole space. Agents reproduce with 20% of probability if there is an empty neighbor. + + +
    diff --git a/doc/index.html b/doc/index.html index 40d20f3..27f499d 100644 --- a/doc/index.html +++ b/doc/index.html @@ -67,6 +67,8 @@

    logo

    + + @@ -96,6 +98,8 @@

    Models

    + + @@ -119,6 +123,7 @@

    Types

    + @@ -142,6 +147,10 @@

    Types

    + + + + @@ -164,6 +173,12 @@

    Functions

    +
  • + Utils +
  • + + + @@ -196,7 +211,7 @@

    Data

    License: GPL
    - Release: 09 Setembro 2015
    + Release: 22 September 2015
    Authors: Pedro R. Andrade
    @@ -249,6 +264,8 @@

    Data

    + + @@ -303,6 +320,8 @@

    Models

    + + @@ -325,6 +344,8 @@

    Models

    + + @@ -356,6 +377,8 @@

    Types

    + + @@ -378,6 +401,10 @@

    Types

    + + + + @@ -409,6 +436,13 @@

    Functions

    + + + Utils + + + + diff --git a/doc/luadoc.css b/doc/luadoc.css index 4f33d45..63259d3 100644 --- a/doc/luadoc.css +++ b/doc/luadoc.css @@ -56,8 +56,10 @@ a:link { font-weight:bold; color: #004080; text-decoration: none; } a:visited { font-weight:bold; color: #006699; text-decoration: none; } a:link:hover { text-decoration:underline; } hr { color:#cccccc } -img { border-width: 0px; } - +.imgBorder { + border-width: 1px; + border-color: Black; +} h3 { padding-top: 1em; }