Skip to content

Commit 4a32933

Browse files
salva24vgvassilev
andauthored
Update src/forces_tumor_cart.cc
Co-authored-by: Vassil Vassilev <[email protected]>
1 parent 934f828 commit 4a32933

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/forces_tumor_cart.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ Real4 InteractionVelocity::Calculate(const Agent* lhs, const Agent* rhs) const {
2929
auto* b = static_cast<const Cell*>(rhs);
3030

3131
// Ignore self-interaction
32-
if (a->GetUid() == b->GetUid()) {
32+
if (a->GetUid() == b->GetUid())
3333
return {0.0, 0.0, 0.0, 0.0};
34-
}
3534

3635
Real3 displacement = a->GetPosition() - b->GetPosition();
3736

0 commit comments

Comments
 (0)