Make division counting consistent between implementations #55
Labels
category: agent
Related to the agent subpackages
package: patch
Related to the patch implementation
package: potts
Related to the potts implementation
type: feature
Improvement or additions to the code base
Currently, when the
make
method for creating a new cell is called:potts
implementation increases the number of divisions (divisions++
)patch
implementation decreases the number of divisions (divisions--
)We should either (1) change
patch
to also increase the number of divisions (and handle theDIVISION_POTENTIAL
parameter appropriately for senescence) or (2) switchpotts
to decrease.I think (2) is easier to implement, but (1) makes more intuitive sense.
The text was updated successfully, but these errors were encountered: