forked from FEniCS/dolfinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
137 lines (117 loc) · 2.21 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
132
133
134
135
136
137
# Compiled source
*.o
*.Plo
*.Po
*.lo
*.la
*.a
*.os
*.pyc
*.so
*.pc
*.pyd
*.def
*.dll
*.exe
*.dylib
dolfin/libdolfin.so*
# FFC generated code in library
/dolfin/ale/Poisson*D.h
# FFC generated code in benchmarks
/bench/fem/convergence/cpp/Poisson2D_1.cpp
/bench/fem/convergence/cpp/Poisson2D_2.cpp
/bench/fem/convergence/cpp/Poisson2D_3.cpp
/bench/fem/convergence/cpp/Poisson2D_4.cpp
/bench/fem/convergence/cpp/Poisson2D_5.cpp
/bench/fem/convergence/cpp/Poisson3D_1.cpp
/bench/fem/convergence/cpp/Poisson3D_2.cpp
/bench/fem/convergence/cpp/Poisson3D_3.cpp
/bench/fem/convergence/cpp/Poisson3D_4.cpp
# Log files
*.log
# Install directory
/local
/local.*
# Documentation
docstrings.i
generated_rst_files
mock_cpp_modules.py
doxygen
doc/source/demos
doc/html
doc/latex
python/doc/source/demos
python/doc/build
python/doc/source/_autogenerated/
# Configuration files
dolfin.conf
dolfin-version
dolfin-config.cmake
DOLFINConfig.cmake
DOLFINConfigVersion.cmake
UseDOLFIN.cmake
dolfin-config-version.cmake
# Demos and tests
build_demo.*
test_*_tempdir
/test/unit/cpp/mesh/*.{xml,m}
/test/unit/cpp/parameter/*.{xml,xml.gz}
/bench/**/**/cpp/forms/*.h
/bench/**/**/cpp/*.h
/python/demo/**/*.py
/python/demo/**/*.xml
/python/demo/undocumented/mesh-quality/mesh-quality.pdf
/demo/**/*.ufl
/demo/**/*.cpp
/test/unit/cpp/**/*.xml
/python/test/unit/**/*.xml
/test/unit/cpp/function/Projection.h
/test/unit/cpp/la/forms/ReactionDiffusion.h
/test/unit/cpp/la/forms/ReactionDiffusionAction.h
/test/unit/cpp/multimesh/MultiMeshStokes2D.h
.cache
# FFC generated demo files
demo/**/**/cpp/*.h
demo/documented/cahn-hilliard/cpp/CahnHilliard2D.cpp
demo/documented/cahn-hilliard/cpp/CahnHilliard3D.cpp
# Temporaries
*~
# Compressed files
*.xz
*.gz
*.zs-old
# Data files
*.pvd
*.pvtu
*.vtu
*.h5
*.xdmf
*.bin
# CMake files
CMakeLists.txt
!/CMakeLists.txt
!dolfin/CMakeLists.txt
!dolfin/*/CMakeLists.txt
!bench/CMakeLists.txt
!dolfin/swig/CMakeLists.txt
!doc/CMakeLists.txt
!demo/CMakeLists.txt
!test/unit/CMakeLists.txt
!test/unit/cpp/CMakeLists.txt
CMakeCache.txt
CMakeFiles
cmake_install.cmake
cmake_uninstall.cmake
Makefile
install_manifest.txt
# Local build files
/build
/build.*/
# OS X files
.DS_Store
.DS_Store?
# Eclipse files
.*project
.settings
cmake.local
build/