We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a5a02 commit 934f828Copy full SHA for 934f828
src/cart_cell.cc
@@ -64,7 +64,7 @@ CartCell::CartCell(const Real3& position) {
64
65
// Cart cells can move if they are alive and not attached to a tumor cell
66
bool CartCell::DoesCellMove() {
67
- return (state_ == CartCellState::kAlive && !attached_to_tumor_cell_);
+ return state_ == CartCellState::kAlive && !attached_to_tumor_cell_;
68
}
69
70
0 commit comments