Skip to content

Commit e9fe588

Browse files
committed
formated
1 parent c9761b0 commit e9fe588

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

src/diffusion_thomas_algorithm.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ class DiffusionThomasAlgorithm : public DiffusionGrid {
4848

4949
/// These methods are overridden but empty because they are not used.
5050
/// This should be fixed in future versions of BioDynaMo.
51-
void DiffuseWithClosedEdge(real_t dt) override{};
52-
void DiffuseWithOpenEdge(real_t dt) override{};
53-
void DiffuseWithNeumann(real_t dt) override{};
54-
void DiffuseWithPeriodic(real_t dt) override{};
55-
void DiffuseWithDirichlet(real_t dt) override{};
51+
void DiffuseWithClosedEdge(real_t dt) override {};
52+
void DiffuseWithOpenEdge(real_t dt) override {};
53+
void DiffuseWithNeumann(real_t dt) override {};
54+
void DiffuseWithPeriodic(real_t dt) override {};
55+
void DiffuseWithDirichlet(real_t dt) override {};
5656

5757
/// Perform chemical diffusion using Thomas algorithm
5858
///

src/forces_tumor_cart.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Real4 InteractionVelocity::Calculate(const Agent* lhs, const Agent* rhs) const {
7676
if (a_tumor && b_tumor) { // two tumor cells
7777
repulsion = kRepulsionTumorTumor; // std::sqrt(kRepulsionTumorTumor *
7878
// kRepulsionTumorTumor);
79-
} else if (!a_tumor && !b_tumor) { // two CAR-T cells
79+
} else if (!a_tumor && !b_tumor) { // two CAR-T cells
8080
repulsion =
8181
kRepulsionCartCart; // std::sqrt(kRepulsionCartCart*kRepulsionCartCart);
8282
} else { // one tumor cell and one CAR-T

src/tumor_cell.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ namespace bdm {
3131
/// This enum class defines the various states a tumor cell can be in during its
3232
/// lifecycle, and various death pathways (necrosis and apoptosis).
3333
enum class TumorCellState : int {
34-
kAlive = 0, ///< Living cell state - cell is alive and can potentially proliferate
34+
kAlive =
35+
0, ///< Living cell state - cell is alive and can potentially proliferate
3536

36-
kNecroticSwelling = 1, ///< Necrotic swelling phase: The cell loses membrane integrity and
37-
///< starts absorbing fluid, swelling abnormally, in volume before
38-
///< rupture. This is the first phase of necrotic cell death.
37+
kNecroticSwelling =
38+
1, ///< Necrotic swelling phase: The cell loses membrane integrity and
39+
///< starts absorbing fluid, swelling abnormally, in volume before
40+
///< rupture. This is the first phase of necrotic cell death.
3941
kNecroticLysed = 2, ///< Necrotic lysed phase: The cell membrane breaks
4042
///< apart, releasing its contents. The cell will be
4143
///< removed from the simulation after a defined time.

0 commit comments

Comments
 (0)