forked from OPM/opm-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
131 lines (120 loc) · 2.56 KB
/
.gitignore
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# build system clutter
Makefile.in
Makefile
.deps/
.libs/
.dirstamp
aclocal*
depcomp
dependencies.m4
am
autom4*
dumux.pc
dumux-devel.pc
install-sh
libtool
ltmain
missing
stamp-h1
config.*
configure
ewoms.pc
EwomsConfig.cmake
# auto-generated doxygen files
Doxyfile
Doxyfile.in
doc/doxygen/html
# auto-saved files
*~
# left overs from git rebase
*.orig
*.rej
# object files
*.o
*.lo
*.la
# ignore CSV files which are usually auto generated
# from some simulation results
*.csv
# latex clutter from dumux handbook
*.pdf
*.aux
*.blg
*.log
*.bbl
*.dvi
*.idx
*.out
*.toc
# simulation results and restart files
*.pvd
*.vtu
*.pvtu
*.vtp
*.ers
# exclude test binaries
test_*
tutorial_coupled
tutorial_decoupled
# always consider files containing source code regardless of their name
!*.cc
!*.hh
!*.c
!*.h
!*.sh
!*.py
# but do not consider the autogenerated files ltmain.sh and config.h
ltmain.sh
config.h
# always consider reference solutions
!*reference.vtu
# excutables of tests
test/implicit/co2injection_immiscible
test/implicit/co2injection_flash
test/implicit/co2injection_ncp
test/implicit/co2injection_pvs
test/implicit/co2injection_immiscible_ni
test/implicit/co2injection_flash_ni
test/implicit/co2injection_ncp_ni
test/implicit/co2injection_pvs_ni
test/implicit/cuvette_pvs
test/implicit/diffusion_ncp
test/implicit/diffusion_pvs
test/implicit/diffusion_flash
test/implicit/finger_immiscible
test/implicit/fracture_immiscible
test/implicit/groundwater_immiscible
test/implicit/infiltration_pvs
test/implicit/lens_immiscible
test/implicit/lens_richards
test/implicit/obstacle_immiscible
test/implicit/obstacle_ncp
test/implicit/obstacle_pvs
test/implicit/outflow_pvs
test/implicit/powerinjection_darcy
test/implicit/powerinjection_forchheimer
test/implicit/reservoir_blackoil
test/implicit/test_navierstokes
test/implicit/test_quadrature
test/implicit/test_stokes
test/implicit/test_stokes2c
test/implicit/test_stokesni
test/implicit/waterair_pvs_ni
test/decoupled/1p/test_1p
test/decoupled/1p/test_diffusion
test/decoupled/2p/test_transport
test/decoupled/2p/test_impes
test/decoupled/2p/test_mpfa2p
test/decoupled/2p/test_impesadaptive
test/decoupled/2p2c/test_dec2p2c
test/decoupled/2p2c/test_adaptive2p2c
test/decoupled/2p2c/test_multiphysics2p2c
test/material/immiscibleflash/test_immiscibleflash
test/material/pengrobinson/test_pengrobinson
test/material/tabulation/test_tabulation
test/material/fluidsystems/test_fluidsystems
test/material/ncpflash/test_ncpflash
test/common/spline/test_spline
test/common/propertysystem/test_propertysystem
tutorial/tutorial_coupled
tutorial/tutorial_decoupled