Template:EvoLudoLab:CSD: Difference between revisions

From EvoLudo
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Legend:MinMaxMean}}
{{Legend:MinMaxMean}}
{{Legend:Gradient|label=Investment|min=Minimum|max=Maximum}}
{{Legend:Gradient|label=Investments|min=Minimum|max=Maximum|gradient=red, yellow, lime, cyan, blue}}
{{Legend:Gradient|label=Payoff code|min=Low|max=High|gradient=black, lightgray, yellow, red}}
{{Legend:Gradient|label=Payoffs & Densities|min=Low|max=High}}


<div id="evoludolab">
<div id="evoludolab">
Line 15: Line 15:
{| class="dataview"
{| class="dataview"
!
!
[[Data Views#Strategies - Structure|Strategies - Structure]]
[[Data Views#Traits - 2D Structure|Traits - 2D Structure]]
| Snapshot of the spatial arrangement of strategies.
| Snapshot of the spatial arrangement of strategies.
|-
|-
!
!
[[Data Views#Strategies - Structure 3D|Strategies - Structure 3D]]
[[Data Views#Traits - 3D Structure|Traits - 3D Structure]]
| 3D view of snapshot of the spatial arrangement of strategies.
| 3D view of snapshot of the spatial arrangement of strategies.
|-
|-
!
!
[[Data Views#Strategies - Mean|Strategies - Mean]]
[[Data Views#Traits - Mean|Traits - Mean]]
| Time evolution of the strategy frequencies.
| Time evolution of the strategy frequencies.
|-
|-
!
!
[[Data Views#Strategies - Histogram|Strategies - Histogram]]
[[Data Views#Traits - Histogram|Traits - Histogram]]
| Snapshot of strategy distribution in population
| Snapshot of strategy distribution in population
|-
|-
!
!
[[Data Views#Strategies - Distribution|Strategies - Distribution]]
[[Data Views#Traits - Distribution|Traits - Distribution]]
| Time evolution of the strategy distribution
| Time evolution of the strategy distribution
|-
|-
!
!
[[Data Views#Fitness - Structure|Fitness - Structure]]
[[Data Views#Fitness - 2D Structure|Fitness - 2D Structure]]
| Snapshot of the spatial distribution of payoffs.
| Snapshot of the spatial distribution of payoffs.
|-
|-
!
!
[[Data Views#Fitness - Structure 3D|Fitness - Structure 3D]]
[[Data Views#Fitness - 3D Structure|Fitness - 3D Structure]]
| 3D view of snapshot of the spatial distribution of payoffs.
| 3D view of snapshot of the spatial distribution of payoffs.
|-
|-
Line 65: Line 65:
{{clobenefitfunc}}
{{clobenefitfunc}}
{{clocostfunc}}
{{clocostfunc}}
; <tt>--init <m[,s]></tt>
: Initial configuration with mean trait <tt>m</tt> and standard deviation <tt>s</tt> (or mutant trait, see <tt>--inittype</tt>.
{{cloinitypecont}}
{{cloinitypecont}}
[[Category:Interactive Lab]]
[[Category:Interactive Lab]]

Latest revision as of 10:49, 19 February 2026

Color code: Maximum Minimum Mean
Investments:
Minimum Maximum
Payoffs & Densities:
Low High

{{{title}}}

{{{doc}}}

Data views

Traits - 2D Structure

Snapshot of the spatial arrangement of strategies.

Traits - 3D Structure

3D view of snapshot of the spatial arrangement of strategies.

Traits - Mean

Time evolution of the strategy frequencies.

Traits - Histogram

Snapshot of strategy distribution in population

Traits - Distribution

Time evolution of the strategy distribution

Fitness - 2D Structure

Snapshot of the spatial distribution of payoffs.

Fitness - 3D Structure

3D view of snapshot of the spatial distribution of payoffs.

Fitness - Mean

Time evolution of average population payoff bounded by the minimum and maximum individual payoff.

Fitness - Histogram

Snapshot of payoff distribution in population.

Structure - Degree

Degree distribution in structured populations.

Console log

Message log from engine.

Game parameters

The list below describes only the few parameters related to the continuous snowdrift game. Follow the link for a complete list and descriptions of all other parameters e.g. referring to update mechanisms of players and the population.

--benefitfcn <f1[,f2[...]]>
benefit function for each trait:
0: \(B(x,y)=b_0\ y\)
benefits linear in opponents investment \(y\).
1: \(B(x,y)=b_0\ y+b_1\ y^2\)
benefits quadratic in opponents investment \(y\).
2: \(B(x,y)=b_0 \sqrt{y}\)
\(\sqrt{\ }\)-saturating benefits for opponents investment \(y\)
3: \(B(x,y)=b_0 \ln(b_1\ y+1)\)
\(\ln\)-saturating benefits for opponents investment \(y\)
4: \(B(x,y)=b_0 (1-\exp(-b_1\ y))\)
\(\exp\)-saturating benefits for opponents investment \(y\)
10: \(B(x,y)=b_0 (x+y)\)
benefits linear in joint investments \(x+y\).
11: \(B(x,y)=b_0 (x+y)+b_1\ (x+y)^2\)
benefits quadratic in joint investments \(x+y\) (default).
12: \(B(x,y)=b_0 \sqrt{x+y}\)
\(\sqrt{\ }\)-saturating benefits for joint investments \(x+y\)
13: \(B(x,y)=b_0 \ln(b_1\ (x+y)+1)\)
\(\ln\)-saturating benefits for joint investments \(x+y\)
14: \(B(x,y)=b_0 (1-\exp(-b_1\ (x+y)))\)
\(\exp\)-saturating benefits for joint investments \(x+y\)
20: \(B(x,y)=b_0 x+b_1\ y+b_2\ x\ y\)
benefits linear in investments \(x\) and \(y\) as well as cross term \(x\,y\).
30: \(B(x,y)=b_0 x\)
benefits linear in own investments \(x\).
31: \(B(x,y)=b_0 x+b_1\ x^2\)
benefits quadratic in own investments \(x\).
32: \(B(x,y)=b_0 x+b_1\ x^2+b_2\ x^3\)
benefits cubic in own investments \(x\).
--benefitparams <b0>[,<b1>[...[;<b'0>[,<b'1>[...]]]]]
parameters \(b_i\) for benefit function of each trait.
--costfcn <f1[,f2[...]]>
cost function for each trait:
0: \(C(x,y)=c_0\ x\)
costs linear in own investment \(x\).
1: \(C(x,y)=c_0\ x+c_1\ x^2\)
costs quadratic in own investment \(x\) (default).
2: \(C(x,y)=c_0 \sqrt{x}\)
\(\sqrt{\ }\)-saturating costs for own investment \(x\)
3: \(C(x,y)=c_0 \ln(c_1\ x+1)\)
\(\ln\)-saturating costs for own investment \(x\)
4: \(C(x,y)=c_0 (1-\exp(-c_1\ x))\)
\(\exp\)-saturating costs for own investment \(x\)
10: \(C(x,y)=c_0 (x+y)\)
costs linear in joint investments \(x+y\).
11: \(C(x,y)=c_0 (x+y)+c_1\ (x+y)^2\)
costs quadratic in joint investments \(x+y\).
12: \(C(x,y)=c_0 (x+y)+c_1\ (x+y)^2+c_2\ (x+y)^3\)
costs cubic in joint investments \(x+y\).
13: \(C(x,y)=c_0 (x+y)+c_1\ (x+y)^2+c_2\ (x+y)^3+c_3\ (x+y)^4\)
costs quartic in joint investments \(x+y\).
20: \(C(x,y)=c_0 x+c_1\ y+c_2\ x\ y\)
costs linear in investments \(x\) and \(y\) as well as cross term \(x\,y\).
--costparams <c0>[,<c1>[...[;<c'0>[,<c'1>[...]]]]]
parameters \(c_i\) for cost function of each trait.
--init <t>
type of initial configuration:
uniform
uniform trait distribution.
mono
monomorphic trait <x1,...,xd>
gaussian
Gaussian traits <m1,...,md;s1,...,sd>
mutant
mutant in monomorphic resident <m1,...,md;r1,...,rd>
where xi, mi, si, and ri refer to the settings for the trait with index i.