File tree Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Expand file tree Collapse file tree 4 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Build LidDrivenCavity
22
33on :
44 push :
5- branches : [main]
5+ branches : [ main ]
66 pull_request :
77
88jobs :
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ Re = 500.0 # Reynolds number
33length = 2.0 # Length of Grid
44grid_points = 100 # Number Of GridPoints
55time_step = 0.01 # Time step
6- max_iterations = 10 # Maximum Number of iterations
6+ max_iterations = 10 # Maximum Number of iterations
77tolerance = 1e-6 # tolerance adjust
88python_plot = true
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ sfml_dep = dependency('sfml-all')
66open_mp_dep = dependency (' openmp' )
77
88toml_dir = include_directories (' subprojects/tomlplusplus' )
9- toml_dep = declare_dependency (include_directories : toml_dir)
9+ toml_dep = declare_dependency (include_directories : toml_dir)
1010
1111tomlplusplus = subproject (' tomlplusplus' )
1212# Source files
@@ -17,15 +17,15 @@ sources = files(
1717)
1818
1919configure_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
2525configure_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
3131LidDrivenCavity = executable (' LidDrivenCavity' ,
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments