Skip to content

Commit 1753430

Browse files
committed
first commit
0 parents  commit 1753430

File tree

149 files changed

+27977
-0
lines changed

Some content is hidden

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

149 files changed

+27977
-0
lines changed

.clang-format

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BasedOnStyle: LLVM
2+
3+
TabWidth: 2
4+
ColumnLimit: 100
5+
UseTab: Never
6+
7+
CommentPragmas: '^/'
8+
ReflowComments: true
9+
AlignTrailingComments: true
10+
SpacesBeforeTrailingComments: 1
11+
12+
SpaceBeforeParens: ControlStatements
13+
SpacesInSquareBrackets: false
14+
BreakBeforeBraces: Allman
15+
PointerAlignment: Middle
16+
17+
BinPackParameters: false
18+
BinPackArguments: false
19+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
20+
AllowShortBlocksOnASingleLine: false
21+
AllowShortFunctionsOnASingleLine: true
22+
AllowShortIfStatementsOnASingleLine: false
23+
AllowShortLoopsOnASingleLine: false
24+
25+
SortIncludes: false
26+
IndentCaseLabels: true
27+
ConstructorInitializerIndentWidth: 2
28+
AlwaysBreakAfterDefinitionReturnType: TopLevel
29+
AlwaysBreakTemplateDeclarations: true

.gitignore

+216
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
.libs
2+
*.la
3+
*.lo
4+
*.d
5+
*.o
6+
*.a
7+
*-opt
8+
*-dbg
9+
*-oprof
10+
*-prof
11+
*-devel
12+
*.e
13+
*.nav
14+
*.log
15+
*.aux
16+
*.toc
17+
*.snm
18+
*.csv
19+
*.dylib
20+
*.so
21+
*.so.*
22+
*.vrb
23+
*.jou
24+
*.pyc
25+
*.mod
26+
*.e.*
27+
*.e-s*
28+
*.cfg
29+
*.lbd.*
30+
*.nem
31+
*.spd
32+
*.pex
33+
*.pdf
34+
*.plist*
35+
*.bbl
36+
*.blg
37+
*.spl
38+
*.idx
39+
traceout*.txt
40+
temp_print_trace.*
41+
*.xda
42+
*.xda.*
43+
*.xdr
44+
*.xdr.*
45+
*.mps
46+
*.msmp
47+
*.msmp-*
48+
*.muds
49+
# Latex garbage
50+
*.lot
51+
*.lof
52+
*.poly
53+
*.mpx
54+
*.btr
55+
*.xml
56+
*.gmv
57+
*.plt
58+
*.slh
59+
*.eps
60+
*.dat
61+
*.gp
62+
*.plugin
63+
*.outp
64+
*.patch
65+
*.txt
66+
*.bib.bak
67+
*.out
68+
*.vtk
69+
*.vtu
70+
*.pvtu
71+
.depend
72+
*.png
73+
*.gif
74+
*.tif
75+
*.jpg
76+
*.tiff
77+
*.ps
78+
*.bmp
79+
*.html
80+
*.xyz
81+
*Revision.h
82+
*.json
83+
*.bak
84+
*.processor.*
85+
.clang_complete
86+
.failed_tests
87+
compile_commands.json
88+
build
89+
90+
# Allow certain files in gold directories
91+
!**/gold/*.e
92+
!**/gold/*.e-s*
93+
!**/gold/*.csv
94+
!**/gold/*.vtk
95+
!**/gold/*.vtu
96+
!**/gold/*.pvtu
97+
!*msh.e
98+
99+
# ignore some directories
100+
build/
101+
102+
peacock_run_tmp.i
103+
yaml_dump*
104+
test/tests/outputs/format/dump.i
105+
106+
# Generated header file
107+
MooseRevision.h
108+
109+
# Precompiled headers
110+
moose/include/base/Precompiled.h.gch
111+
112+
# test garbagge
113+
*.FAILED.txt
114+
115+
# eclipse garbage
116+
.project
117+
.cproject
118+
.metadata
119+
.settings
120+
.pydevproject
121+
122+
# vim garbage
123+
*~
124+
.*.swp
125+
.*.swo
126+
127+
framework/contrib/exodiff/exodiff
128+
129+
# Mac garbage
130+
.DS_Store
131+
*.dSYM
132+
133+
# Unit testing stuffbmoose_unit/test_results.xml
134+
!unit/data/csv/*.csv
135+
136+
# gcov code coverage files
137+
*.gcno
138+
*.gcda
139+
*.gcov
140+
141+
# paraview state files
142+
*.pvsm
143+
144+
#Peacock generated files
145+
peacock_*.i
146+
peacock_*.e
147+
148+
# On linux, shared libs end in .0 sometimes
149+
libpcre-opt*
150+
libpcre-dbg*
151+
libmoose-opt*
152+
libmoose-dbg*
153+
154+
#doxygen generated
155+
*/doc/doxygen/html/*
156+
*/doc/doxygen/**/*
157+
moose/doc/doxygen/html/*
158+
modules/*/doc/doxygen/html/*
159+
tutorials/*/*/doc/doxygen/html/*
160+
ICE/
161+
framework/contrib/asio/
162+
163+
# Restartable Data
164+
*.rd
165+
*.rd-*
166+
167+
# Checkpoint Files
168+
*.cpa
169+
*.cpr
170+
*.cpa-*
171+
*.cpr-*
172+
173+
# phase_field/tests/solution_rasterizer
174+
out.xyz
175+
176+
# JIT and automatic differentiation cache files
177+
.jitcache/
178+
.jitdir/
179+
tmp_jit_*
180+
181+
# Do not store ipython notebook checkpoints
182+
*-checkpoint.ipynb*
183+
184+
# MooseDocs
185+
site
186+
!**/doc/content/**/*.md
187+
!**/doc/content/**/*.jpg
188+
!**/doc/content/**/*.jpeg
189+
!**/doc/content/**/*.gif
190+
!**/doc/content/**/*.png
191+
!**/doc/content/**/*.svg
192+
!**/doc/content/**/*.ogg
193+
!**/doc/content/**/*.webm
194+
!**/doc/content/**/*.mp4
195+
!**/doc/content/**/*.css
196+
!**/doc/content/**/*.js
197+
!**/doc/content/**/*.bib
198+
!**/doc/content/**/*.woff
199+
!**/doc/content/**/*.woff2
200+
201+
# Chigger
202+
!python/chigger/tests/**/gold/*.png
203+
!python/chigger/tests/input/*.e*
204+
!python/chigger/logos/*.png
205+
!python/chigger/contrib/*.xml
206+
207+
# Peacock
208+
python/peacock/tests/exodus_tab/TestOutputPlugin_repr.py
209+
python/peacock/tests/exodus_tab/TestExodusPluginManager_repr.py
210+
python/peacock/tests/input_tab/InputFileEditor/fsp_test.i
211+
python/peacock/tests/postprocessor_tab/TestPostprocessorPluginManager_test_script.py
212+
!python/peacock/tests/**/gold/*.png
213+
!python/peacock/icons/**/*.*
214+
!python/peacock/tests/**/input/*.*
215+
peacock_tmp_diff.exo
216+
*.e.diff

0 commit comments

Comments
 (0)