forked from csrc-sdsu/mole
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
54 lines (46 loc) · 721 Bytes
/
.gitignore
File metadata and controls
54 lines (46 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# General ignore patterns
!*.*
!*/
# Ignore build artifacts and temporary files
*.o
*.so
*.a
*.asv
*~
# Ignore Doxygen generated HTML and XML output
doc/api_docs/cpp
# Ignore Sphinx build output
doc/sphinx/build/
# Mac specific
.DS_Store
*.dSYM
*~
*.dylib
# Python
dist
*egg*
.pytest_cache
*cffi.so
*cffi.dylib
__pycache__/
.ipynb_checkpoints/
# Editor Misc
.cache/
.history
.vscode
.ccls-cache
.vim
# Don't try to track executables
examples/cpp/RK2
examples/cpp/convection_diffusion
examples/cpp/elliptic1D
examples/cpp/elliptic2D
examples/cpp/parabolic1D
examples/cpp/plot.gnu
examples/cpp/schrodinger1D
examples/cpp/transport1D
tests/cpp/test1
tests/cpp/test2
tests/cpp/test3
tests/cpp/test4
tests/cpp/test5