Skip to content

Commit a70137d

Browse files
committed
includes order for clang format
1 parent 6ecf5d1 commit a70137d

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

src/cart_cell.cc

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

2222
#include "cart_cell.h"
23-
#include "hyperparams.h"
24-
#include "tumor_cell.h"
25-
#include "utils_aux.h"
2623
#include <algorithm>
2724
#include <cstdint>
2825
#include <stdexcept>
2926
#include <string>
27+
#include "hyperparams.h"
28+
#include "tumor_cell.h"
29+
#include "utils_aux.h"
3030

3131
namespace bdm {
3232

src/diffusion_thomas_algorithm.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
* for the compiler-research.org organization.
2020
*/
2121
#include "diffusion_thomas_algorithm.h"
22-
#include "cart_cell.h"
23-
#include "hyperparams.h"
24-
#include "tumor_cell.h"
2522
#include <string>
2623
#include <utility>
2724
#include <vector>
25+
#include "cart_cell.h"
26+
#include "hyperparams.h"
27+
#include "tumor_cell.h"
2828

2929
namespace bdm {
3030

src/diffusion_thomas_algorithm.h

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

25-
#include "biodynamo.h"
26-
#include "core/diffusion/diffusion_grid.h"
2725
#include <string>
2826
#include <vector>
27+
#include "biodynamo.h"
28+
#include "core/diffusion/diffusion_grid.h"
2929

3030
namespace bdm {
3131

src/forces_tumor_cart.cc

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

2222
#include "forces_tumor_cart.h"
23+
#include <algorithm>
24+
#include <cmath>
2325
#include "hyperparams.h"
2426
#include "tumor_cell.h"
2527
#include "utils_aux.h"
26-
#include <algorithm>
27-
#include <cmath>
2828

2929
namespace bdm {
3030

src/hyperparams.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#ifndef TUMOR_HYPERPARAMS_H_
2323
#define TUMOR_HYPERPARAMS_H_
2424

25-
#include "biodynamo.h"
2625
#include <cmath>
26+
#include "biodynamo.h"
2727

2828
namespace bdm {
2929

src/tumor_cell.cc

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

2222
#include "tumor_cell.h"
23-
#include "hyperparams.h"
24-
#include "utils_aux.h"
2523
#include <algorithm>
2624
#include <stdexcept>
2725
#include <string>
26+
#include "hyperparams.h"
27+
#include "utils_aux.h"
2828

2929
namespace bdm {
3030

src/utils_aux.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
*/
2121

2222
#include "utils_aux.h"
23-
#include "hyperparams.h"
24-
#include "tumor_cell.h"
2523
#include <cmath>
2624
#include <fstream>
2725
#include <tuple>
2826
#include <vector>
27+
#include "hyperparams.h"
28+
#include "tumor_cell.h"
2929

3030
namespace bdm {
3131

src/utils_aux.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#ifndef CORE_UTIL_UTILS_AUX_H_
2323
#define CORE_UTIL_UTILS_AUX_H_
2424

25-
#include "biodynamo.h"
2625
#include <cstdint>
2726
#include <tuple>
2827
#include <vector>
28+
#include "biodynamo.h"
2929

3030
namespace bdm {
3131
/// Forward declaration of TumorCell class

0 commit comments

Comments
 (0)