Created
May 11, 2017 12:33
-
-
Save megadix/1bb541c237213c0cb541eba9d1b77c86 to your computer and use it in GitHub Desktop.
Corrected version of "Wildlife Park" example of JFCM library
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <maps xmlns="http://www.megadix.org/standards/JFCM-map-v-1.2"> | |
| <map name="Wildlife Park"> | |
| <concepts> | |
| <concept act="TANH" input="0.0" name="Black market price" output="0.0"/> | |
| <concept act="TANH" input="0.0" name="Erbivores" output="0.0"/> | |
| <concept act="TANH" input="0.0" name="Grassland" output="0.0"/> | |
| <concept act="TANH" input="0.0" name="Poachers" output="0.0"/> | |
| <concept act="TANH" input="0.0" name="Predators" output="0.0"/> | |
| <concept act="TANH" input="0.0" name="Rain" output="0.0"/> | |
| <concept act="TANH" input="0.0" name="Rangers" output="0.0"/> | |
| </concepts> | |
| <connections> | |
| <connection from="Black market price" name="Black market price - Poachers" to="Poachers" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="1.0"/> | |
| </params> | |
| </connection> | |
| <connection from="Erbivores" name="Erbivores - Black market price" to="Black market price" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.2"/> | |
| </params> | |
| </connection> | |
| <connection from="Erbivores" name="Erbivores - Grassland" to="Grassland" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.6"/> | |
| </params> | |
| </connection> | |
| <connection from="Erbivores" name="Erbivores - Poachers" to="Poachers" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="0.3"/> | |
| </params> | |
| </connection> | |
| <connection from="Erbivores" name="Erbivores - Predators" to="Predators" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="0.6"/> | |
| </params> | |
| </connection> | |
| <connection from="Grassland" name="Grassland - Erbivores" to="Erbivores" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="0.8"/> | |
| </params> | |
| </connection> | |
| <connection from="Poachers" name="Poachers - Black market price" to="Black market price" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.5"/> | |
| </params> | |
| </connection> | |
| <connection from="Poachers" name="Poachers - Erbivores" to="Erbivores" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.8"/> | |
| </params> | |
| </connection> | |
| <connection from="Poachers" name="Poachers - Predators" to="Predators" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-1.0"/> | |
| </params> | |
| </connection> | |
| <connection from="Predators" name="Predators - Black market price" to="Black market price" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.4"/> | |
| </params> | |
| </connection> | |
| <connection from="Predators" name="Predators - Erbivores" to="Erbivores" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.6"/> | |
| </params> | |
| </connection> | |
| <connection from="Predators" name="Predators - Poachers" to="Poachers" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="0.7"/> | |
| </params> | |
| </connection> | |
| <connection from="Rain" name="Rain - Grassland" to="Grassland" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="1.0"/> | |
| </params> | |
| </connection> | |
| <connection from="Rangers" name="Rangers - Black market price" to="Black market price" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="1.0"/> | |
| </params> | |
| </connection> | |
| <connection from="Rangers" name="Rangers - Poachers" to="Poachers" type="WEIGHTED"> | |
| <params> | |
| <param name="weight" value="-0.3"/> | |
| </params> | |
| </connection> | |
| </connections> | |
| </map> | |
| </maps> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment