Skip to content

Commit 6ecf5d1

Browse files
committed
includes cleaned
1 parent f40e768 commit 6ecf5d1

File tree

9 files changed

+28
-25
lines changed

9 files changed

+28
-25
lines changed

src/cart_cell.cc

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,13 @@
2020
*/
2121

2222
#include "cart_cell.h"
23-
#include <cstdint>
24-
#include <stdexcept>
25-
#include <string>
26-
#include "core/container/math_array.h"
27-
#include "core/functor.h"
28-
#include "core/interaction_force.h"
29-
#include "core/real_t.h"
30-
#include "core/resource_manager.h"
31-
#include "core/functor.h"
32-
#include "hyperparams.h"
33-
#include "tumor_cell.h"
34-
#include "core/container/math_array.h"
35-
#include "core/interaction_force.h"
36-
#include "core/real_t.h"
37-
#include "core/resource_manager.h"
3823
#include "hyperparams.h"
3924
#include "tumor_cell.h"
4025
#include "utils_aux.h"
26+
#include <algorithm>
4127
#include <cstdint>
28+
#include <stdexcept>
29+
#include <string>
4230

4331
namespace bdm {
4432

src/cart_tumor.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
* for the compiler-research.org organization.
2020
*/
2121
#include "cart_tumor.h"
22-
#include "cart_cell.h"
22+
#include <iostream>
23+
#include <memory>
24+
#include <vector>
2325
#include "core/environment/uniform_grid_environment.h"
2426
#include "core/operation/mechanical_forces_op.h"
2527
#include "diffusion_thomas_algorithm.h"

src/diffusion_thomas_algorithm.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
*/
2121
#include "diffusion_thomas_algorithm.h"
2222
#include "cart_cell.h"
23-
#include "core/resource_manager.h"
24-
#include "core/simulation.h"
2523
#include "hyperparams.h"
2624
#include "tumor_cell.h"
25+
#include <string>
26+
#include <utility>
27+
#include <vector>
2728

2829
namespace bdm {
2930

src/diffusion_thomas_algorithm.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@
2222
#ifndef DIFFUSION_THOMAS_ALGORITHM_H_
2323
#define DIFFUSION_THOMAS_ALGORITHM_H_
2424

25-
#include <utility>
25+
#include "biodynamo.h"
2626
#include "core/diffusion/diffusion_grid.h"
27+
#include <string>
28+
#include <vector>
2729

2830
namespace bdm {
2931

src/forces_tumor_cart.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@
2020
*/
2121

2222
#include "forces_tumor_cart.h"
23-
#include "core/operation/mechanical_forces_op.h"
2423
#include "hyperparams.h"
2524
#include "tumor_cell.h"
2625
#include "utils_aux.h"
26+
#include <algorithm>
27+
#include <cmath>
2728

2829
namespace bdm {
2930

src/hyperparams.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@
2222
#ifndef TUMOR_HYPERPARAMS_H_
2323
#define TUMOR_HYPERPARAMS_H_
2424

25-
#include "core/real_t.h"
26-
27-
#include <map>
28-
#include <string>
25+
#include "biodynamo.h"
26+
#include <cmath>
2927

3028
namespace bdm {
3129

src/tumor_cell.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,13 @@
1818
* This file contains a model developed under Google Summer of Code (GSoC)
1919
* for the compiler-research.org organization.
2020
*/
21+
2122
#include "tumor_cell.h"
2223
#include "hyperparams.h"
2324
#include "utils_aux.h"
25+
#include <algorithm>
26+
#include <stdexcept>
27+
#include <string>
2428

2529
namespace bdm {
2630

src/utils_aux.cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@
1818
* This file contains a model developed under Google Summer of Code (GSoC)
1919
* for the compiler-research.org organization.
2020
*/
21+
2122
#include "utils_aux.h"
22-
#include "core/util/random.h"
2323
#include "hyperparams.h"
2424
#include "tumor_cell.h"
25+
#include <cmath>
26+
#include <fstream>
27+
#include <tuple>
28+
#include <vector>
2529

2630
namespace bdm {
2731

src/utils_aux.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
#define CORE_UTIL_UTILS_AUX_H_
2424

2525
#include "biodynamo.h"
26+
#include <cstdint>
27+
#include <tuple>
28+
#include <vector>
2629

2730
namespace bdm {
2831
/// Forward declaration of TumorCell class

0 commit comments

Comments
 (0)