Skip to content

Commit e3e67bc

Browse files
chore: formatting
1 parent bbf8aa2 commit e3e67bc

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build LidDrivenCavity
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [ main ]
66
pull_request:
77

88
jobs:

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ Re = 500.0 # Reynolds number
33
length = 2.0 # Length of Grid
44
grid_points = 100 # Number Of GridPoints
55
time_step = 0.01 # Time step
6-
max_iterations = 10 # Maximum Number of iterations
6+
max_iterations = 10 # Maximum Number of iterations
77
tolerance = 1e-6 # tolerance adjust
88
python_plot = true

meson.build

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sfml_dep = dependency('sfml-all')
66
open_mp_dep = dependency('openmp')
77

88
toml_dir = include_directories('subprojects/tomlplusplus')
9-
toml_dep = declare_dependency(include_directories: toml_dir)
9+
toml_dep = declare_dependency(include_directories : toml_dir)
1010

1111
tomlplusplus = subproject('tomlplusplus')
1212
# Source files
@@ -17,15 +17,15 @@ sources = files(
1717
)
1818

1919
configure_file(
20-
input: 'config.toml',
21-
output: 'config.toml',
22-
copy: true
20+
input : 'config.toml',
21+
output : 'config.toml',
22+
copy : true
2323
)
2424

2525
configure_file(
26-
input: 'src/plot.py',
27-
output: 'plot.py',
28-
copy: true
26+
input : 'src/plot.py',
27+
output : 'plot.py',
28+
copy : true
2929
)
3030

3131
LidDrivenCavity = executable('LidDrivenCavity',

src/main.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ int main(const int argc, char **argv) {
2727
if (python_plot) {
2828
system("python plot.py");
2929
}
30-
3130
} catch (const toml::parse_error &err) {
3231
std::cerr << "Parsing failed:\n" << err << "\n";
3332
return 1;

0 commit comments

Comments
 (0)