Skip to content
Open
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
2 changes: 1 addition & 1 deletion sample_projects/interactions/custom_modules/custom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ void stem_cell_phenotype( Cell* pCell, Phenotype& phenotype, double dt )
{
if( pC->type == stem_type )
{ num_stem++; }
if( pC->type == num_differentiated )
if( pC->type == diff_type )
{ num_differentiated++; }
if( pC->type == bacteria_type )
{ num_bacteria++; }
Expand Down
Loading