Space

EvoId.ContinuousSegmentType
ContinuousSegment(s, e)

Creates a segment space, where individuals are reflected at both ends.

Arguments

  • s start of the segment
  • e end of the segment

Example

ContinuousSegment(1., 2.)
source
EvoId.DiscreteSegmentType
DiscreteSegment(s, e)

Creates a discrete segement space, where individuals are reflected at both ends.

Arguments

  • s start of the segment
  • e end of the segment

Example

    DiscreteSegment(1, 2)
source
EvoId.GraphSpaceType
GraphSpace(g)

Creates a Graph Space.

Example

using LightGraphs
g = star_graph(7)
GraphSpace(g)
source
EvoId.RealSpaceType
RealSpace{N,T}()

Creates a real space.

Arguments

  • N dimension of the space
  • T type of the underlying traits.
source
EvoId.get_graphMethod
get_graph(d, t)

Returns the graph correseponding to d::DynGraphSpace at time t

source