Skip to content

Redistribution of school if new map also is in the area of distribution. #13

@barriern

Description

@barriern

Adding a by-species to control whether the school is always redistributed when map change (actual case) or if random walk is used instead if the school already is in the new distribution map.

Actual implementation:

flowchart TD
   id1{Map has changed?}
   id2[Random walk]
   id3[Full redistribution]
   id1-->|yes|id3
   id1-->|no|id2

Loading

Expected implementation:

flowchart TD
   id1{Map has changed?}
   id1bis{Full redistribution?}
   id1ter{Is school in new map?}
   id2[Random walk]
   id3[Full redistribution]

   id1-->|no|id2
   id1-->|yes|id1bis

   id1bis-->|yes|id3
   id1bis-->|no|id1ter
   id1ter-->|yes|id2
   id1ter-->|no|id3

Loading

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions