Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/arcade/potts/agent/cell/PottsCellFlyGMC.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
/**
* Implementation of {@link PottsCell} for fly GMC agents. These cells divide into two {@link
* PottsCellFlyNeuron} cells. The links must be set in the setup file so that 100% of the daughter
* cells are Neurons. The differentiation of the parent cell is handled by the {@link
* PottsModuleProliferationVolumeBasedDivision} module. The basal apoptosis rate of this cell should
* be set to 0 in the setup file.
* cells are Neurons. The basal apoptosis rate of this cell should be set to 0 in the setup file.
*/
public class PottsCellFlyGMC extends PottsCell {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
import arcade.potts.util.PottsEnums.Phase;

/**
* Implementation of {@link PottsModule} for fly GMC agents. These cells divide into two {@link
* PottsCellFlyNeuron} cells. The links must be set in the setup file so that 100% of the daughter
* cells are Neurons.
* Implementation of {@link PottsModule} for fly GMC agents. The links must be set in the setup file
* so that 100% of the daughter cells are Neurons.
*/
public abstract class PottsModuleProliferationVolumeBasedDivision extends PottsModuleProliferation {

Expand Down
Loading