-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
172 lines (148 loc) · 2.37 KB
/
.gitignore
File metadata and controls
172 lines (148 loc) · 2.37 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# Compiled Object files
*.o
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
*.smod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Build directories
build/
cmake_build/
_build/
# CMake files
CMakeFiles/
cmake_install.cmake
install_manifest.txt
compile_commands.json
# Generated files
*.generated.*
# IDE and Editor files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
.project
.cproject
.settings/
# Temporary files
*.tmp
*.temp
*.bak
*.backup
# Log files
*.log
log_*
error.log
error_*.log
err2
out
# Test and benchmark outputs
CI_CONCLUSION
# Input/output files with tilde backup
*.h~
*.cpp~
*.g~
*.in~
*.nml~
# Configuration and make files
config.log
config.status
config.h
configure
autom4te.cache/
# Package manager files
conan.lock
vcpkg_installed/
# Profiling and debugging
*.prof
*.gcda
*.gcno
*.gcov
gmon.out
callgrind.out.*
# Jupyter notebook checkpoints
.ipynb_checkpoints/
# Python cache (if any Python scripts)
__pycache__/
*.pyc
*.pyo
*.pyd
# Archive files
*.zip
*.tar
*.tar.gz
*.tar.bz2
*.7z
# Specific to this project's structure
# Submodule changes (track only the submodule reference)
basic_common_cpp/
# In-tree binaries produced by the legacy per-directory Makefiles.
# Keep the ignore rules narrow and immediately re-allow real source files.
src_copos/CP_*
src_ctype/CTYP_*
src_ctype/NC_ComputeAverage
src_delaunay/LATT_*
src_dualdesc/POLY_*
src_dualdesc/Read_MPI_sizes
src_group/GRP_*
src_group/TEST_WeightMatrixLimited
src_indefinite/INDEF_*
src_isotropy/LATT_*
src_isotropy/CheckPositiveSemiDefinite
src_isotropy/VectFamily_Reduction
src_latt/LATT_*
src_latt/TSPACE_*
src_latt/GRP_TestFiniteness
src_latt/TEST_EquiStabFamily
src_lorentzian/LORENTZ_*
src_lorentzian/COXDYN_*
src_lorentzian/LATT_GetIntegralMatricesPossibleOrders
src_perfect/PERF_*
src_perfect/IsEutactic
src_poincare_polyhedron/POINCARE_*
src_poly/POLY_*
src_poly/VectFamily_ColumnReduction
src_polydecomp/DEC_*
src_polygen/PolyGen_*
src_rankin/RANKIN_*
src_robust_covering/Robust_*
src_short/SHORT_*
src_sparse_solver/StandaloneSparseSolver*
!src_*/**/*.cpp
!src_*/**/*.h
!src_*/**/*.hpp
!src_*/**/*.hh
!src_*/**/*.c
!src_*/**/*.cc
!src_*/**/*.in
!src_*/**/*.nml
!src_*/**/*.md
!src_*/**/Makefile*
# GAP computation files
*.g
!CI_tests/**/*.g
!scripts/**/*.g
.aider*