-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
117 lines (103 loc) · 1.21 KB
/
.gitignore
File metadata and controls
117 lines (103 loc) · 1.21 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
# Build directories and artifacts
build/
dist/
*.o
*.so
*.a
*.dylib
*.dll
*.exe
*.out
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile.generated
*.cmake
!CMakeLists.txt
# CUDA/GPU compiled files
*.ptx
*.cubin
*.fatbin
# C/C++ compiled binaries
difflin
/verification/keyrecovery/keyrecovery
/verification/keyrecovery/keyanalysis
*.elf
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
.coverage
htmlcov/
*.egg-info/
.eggs/
# Jupyter Notebook
.ipynb_checkpoints
# LaTeX
*.aux
*.log
*.out
*.toc
*.fls
*.fdb_latexmk
*.synctex.gz
*.pdf_tex
*.bbl
*.blg
*.xdv
# MiniZinc
*.fzn
*.ozn
minizinc-python.log
# Results and output files
results/*.txt
results/*.log
results/*.csv
results/*.json
!results/.gitkeep
*.tex
!tikzstyle/*.tex
# Editor and IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# Logs and databases
*.log
*.sqlite
*.db
# Temporary files
tmp/
temp/
*.tmp
*.bak
*.backup
# OS specific
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes
desktop.ini
$RECYCLE.BIN/
# Data files (optional - uncomment if you don't want to track large data)
# *.dat
# *.csv
# *.bin
# Debug files
debug_output.txt
*.dSYM/