-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy path.gitignore
More file actions
79 lines (63 loc) · 1.15 KB
/
.gitignore
File metadata and controls
79 lines (63 loc) · 1.15 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.git
cmake-build-debug/
cmake-build-debug
.idea
bin
build*/
# root Makefile is generated by CMake automatically
Makefile
!doc/Makefile
# Latex compile files
*.aux
*.lof
*.log
*.lot
*.synctex.gz
*.toc
*.pdf
# All vtk mesh files
/*.vtu
/*.pvtu
test/**/*.pvtu
test/**/*.vtu
test/modules/linear_boltzmann_solvers/dsa/SimTest_92b_DSA_PWLC.pvtu
test/modules/linear_boltzmann_solvers/dsa/SimTest_92b_DSA_PWLC_0.vtu
test/**/*.csv
tests/BigTests/*/solutions/
# All exodus files
/*.e
# python files
.DS_Store
._.DS_Store
*.pyc
*.pmesh
__pycache__
**/__pycache__
*-private.sh
#Documentation
doc/source/pyapi/generated/*
!doc/source/pyapi/generated/.gitkeep
doc/build/
doc/source/capi/xml
doc/source/capi/rst
#visual studio code files
.vscode/
test/**/out/
doc/source/tutorials/**/out/
#Scratch directory
scratch/
#general data files
*.data
tests/BigTests/c5g7/Test1/solutions/
**/*.cmesh
# Python generated libraries
pyopensn/libopensn*.so*
pyopensn/libopensn*.dylib
pyopensn/__init__.cpython*
pyopensn.egg-info
doc/**/*.pvtu
doc/**/*.vtu
doc/source/tutorials/**/*.pvtu
doc/source/tutorials/**/*.vtu
doc/source/tutorials/**/*.py
doc/source/tutorials/**/.ipynb_checkpoints/