Skip to content

Commit 80f529c

Browse files
authored
Merge pull request #16 from hswind4/main
add license header
2 parents ca7d768 + 39f1ac0 commit 80f529c

File tree

199 files changed

+40911
-40361
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+40911
-40361
lines changed

.clang-tidy

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
Checks: >
2-
'-*,
3-
bugprone-*,
4-
-bugprone-branch-clone,
5-
-bugprone-easily-swappable-parameters,
6-
-bugprone-exception-escape,
7-
-bugprone-implicit-widening-of-multiplication-result,
8-
clang-analyzer-*,
9-
-clang-analyzer-optin.mpi.MPI-Checker,
10-
clang-diagnostic-*,
11-
cppcoreguidelines-*,
12-
-cppcoreguidelines-avoid-c-arrays,
13-
-cppcoreguidelines-avoid-goto,
14-
-cppcoreguidelines-avoid-magic-numbers,
15-
-cppcoreguidelines-avoid-non-const-global-variables,
16-
-cppcoreguidelines-init-variables,
17-
-cppcoreguidelines-interfaces-global-init,
18-
-cppcoreguidelines-macro-usage,
19-
-cppcoreguidelines-no-malloc,
20-
-cppcoreguidelines-non-private-member-variables-in-classes,
21-
-cppcoreguidelines-owning-memory,
22-
-cppcoreguidelines-pro-*,
23-
modernize-*,
24-
-modernize-avoid-c-arrays,
25-
-modernize-macro-to-enum,
26-
-modernize-return-braced-init-list,
27-
-modernize-use-trailing-return-type,
28-
-modernize-use-using,
29-
performance-*,
30-
readability-*,
31-
-readability-braces-around-statements,
32-
-readability-container-data-pointer,
33-
-readability-else-after-return,
34-
-readability-function-cognitive-complexity,
35-
-readability-function-size,
36-
-readability-identifier-length,
37-
-readability-implicit-bool-conversion,
38-
-readability-isolate-declaration,
39-
-readability-magic-numbers,
40-
-readability-named-parameter,
41-
-readability-simplify-boolean-expr,
42-
mpi-*
43-
'
44-
45-
# Files not ending with nolint.H will be filtered in.
46-
HeaderFilterRegex: '([^n].....|[^o]....|[^l]...|[^i]..|[^n].|[^t])\.H$'
1+
Checks: >
2+
'-*,
3+
bugprone-*,
4+
-bugprone-branch-clone,
5+
-bugprone-easily-swappable-parameters,
6+
-bugprone-exception-escape,
7+
-bugprone-implicit-widening-of-multiplication-result,
8+
clang-analyzer-*,
9+
-clang-analyzer-optin.mpi.MPI-Checker,
10+
clang-diagnostic-*,
11+
cppcoreguidelines-*,
12+
-cppcoreguidelines-avoid-c-arrays,
13+
-cppcoreguidelines-avoid-goto,
14+
-cppcoreguidelines-avoid-magic-numbers,
15+
-cppcoreguidelines-avoid-non-const-global-variables,
16+
-cppcoreguidelines-init-variables,
17+
-cppcoreguidelines-interfaces-global-init,
18+
-cppcoreguidelines-macro-usage,
19+
-cppcoreguidelines-no-malloc,
20+
-cppcoreguidelines-non-private-member-variables-in-classes,
21+
-cppcoreguidelines-owning-memory,
22+
-cppcoreguidelines-pro-*,
23+
modernize-*,
24+
-modernize-avoid-c-arrays,
25+
-modernize-macro-to-enum,
26+
-modernize-return-braced-init-list,
27+
-modernize-use-trailing-return-type,
28+
-modernize-use-using,
29+
performance-*,
30+
readability-*,
31+
-readability-braces-around-statements,
32+
-readability-container-data-pointer,
33+
-readability-else-after-return,
34+
-readability-function-cognitive-complexity,
35+
-readability-function-size,
36+
-readability-identifier-length,
37+
-readability-implicit-bool-conversion,
38+
-readability-isolate-declaration,
39+
-readability-magic-numbers,
40+
-readability-named-parameter,
41+
-readability-simplify-boolean-expr,
42+
mpi-*
43+
'
44+
45+
# Files not ending with nolint.H will be filtered in.
46+
HeaderFilterRegex: '([^n].....|[^o]....|[^l]...|[^i]..|[^n].|[^t])\.H$'

.editorconfig

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,49 @@
1-
# http://EditorConfig.org
2-
#
3-
# precedence of rules is bottom to top
4-
5-
# this is the top-most EditorConfig file
6-
root = true
7-
8-
9-
[*.{c,h,cpp,hpp,H,py}]
10-
# 4 space indentation
11-
indent_style = space
12-
indent_size = 4
13-
14-
# setting it to true would result in too many white changes to amrex
15-
trim_trailing_whitespace = true
16-
17-
# unix-style newlines
18-
end_of_line = lf
19-
20-
# newline ending in files
21-
insert_final_newline = true
22-
23-
24-
[*.md]
25-
# two end of line whitespaces are newlines without a paragraph
26-
trim_trailing_whitespace = false
27-
28-
29-
[*.rst]
30-
# Enforce UTF-8 encoding
31-
charset = utf-8
32-
33-
# Unix-style newlines
34-
end_of_line = lf
35-
36-
# Newline ending in files
37-
insert_final_newline = true
38-
39-
# 3 space indentation
40-
indent_style = space
41-
indent_size = 3
42-
43-
# Clean up trailing whitespace
44-
trim_trailing_whitespace = true
45-
46-
[Makefile]
47-
# TABs are part of its syntax
48-
indent_style = tab
49-
indent_size = unset
1+
# http://EditorConfig.org
2+
#
3+
# precedence of rules is bottom to top
4+
5+
# this is the top-most EditorConfig file
6+
root = true
7+
8+
9+
[*.{c,h,cpp,hpp,H,py}]
10+
# 4 space indentation
11+
indent_style = space
12+
indent_size = 4
13+
14+
# setting it to true would result in too many white changes to amrex
15+
trim_trailing_whitespace = true
16+
17+
# unix-style newlines
18+
end_of_line = lf
19+
20+
# newline ending in files
21+
insert_final_newline = true
22+
23+
24+
[*.md]
25+
# two end of line whitespaces are newlines without a paragraph
26+
trim_trailing_whitespace = false
27+
28+
29+
[*.rst]
30+
# Enforce UTF-8 encoding
31+
charset = utf-8
32+
33+
# Unix-style newlines
34+
end_of_line = lf
35+
36+
# Newline ending in files
37+
insert_final_newline = true
38+
39+
# 3 space indentation
40+
indent_style = space
41+
indent_size = 3
42+
43+
# Clean up trailing whitespace
44+
trim_trailing_whitespace = true
45+
46+
[Makefile]
47+
# TABs are part of its syntax
48+
indent_style = tab
49+
indent_size = unset

.gitattributes

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
*.ipynb linguist-vendored
2-
*.tex linguist-documentation
3-
4-
*.H linguist-language=C++
1+
*.ipynb linguist-vendored
2+
*.tex linguist-documentation
3+
4+
*.H linguist-language=C++
5+
# Force use of LF
6+
* text=auto eol=lf

.gitignore

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
nohup.out
2-
*.[oa]
3-
*.ex
4-
*~
5-
chk?????
6-
plt?????
7-
d/
8-
f/
9-
o/
10-
chk?????.old*
11-
plt?????.old*
12-
Tutorials_profling/*/*
13-
log*
14-
bl_prof*
15-
case_results*/
16-
tmp_build_dir/
1+
nohup.out
2+
*.[oa]
3+
*.ex
4+
*~
5+
chk?????
6+
plt?????
7+
d/
8+
f/
9+
o/
10+
chk?????.old*
11+
plt?????.old*
12+
Tutorials_profling/*/*
13+
log*
14+
bl_prof*
15+
case_results*/
16+
tmp_build_dir/
1717

1818
.codegpt

0 commit comments

Comments
 (0)