forked from scipopt/scip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
148 lines (126 loc) · 2.54 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
138
139
140
141
142
143
144
145
146
147
148
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
\#*
backup/
cplex.log
settings/
# compiled object files
*.[oa]
*.pyc
*.so
*~
# created by make compilation
bin/
lib/
obj/
TAGS
# common cmake build folder names
build/
build*
debug/
release/
cmake-build-debug/
# check folder, files created by or for `make test`
check/results/
check/results*/
check/locks
check/MINLP
check/IP
check/LP
check/instancedata
check/solchecker/doc/doc/
# ignore check/coverage but not check/coverage/settings
check/coverage/
!check/coverage/settings
# vim swap files
.*.swp
# thumbnails and os system information
.directory
# lint and pclint configurations files
lint.out
lint/gcc-include-path.lnt
lint/lint_cmac.h
lint/lint_cppmac.h
lint/size-options.lnt
pclint/co-gcc.h
pclint/co-gcc.lnt
pclint/co-clang.h
pclint/co-clang.lnt
# doc files
doc/html/
doc/html_devel/
doc/doxygen
doc/scip.tag
doc/inc/faq/faqdata.php
doc/inc/faq/faq.inc
doc/inc/parameters.set
doc/**/*.tmp
doc/*.log
doc/inc/simpleinstance/output.log
# editor cache files
.cproject
.project
.vscode/
.idea/
.settings/
# git hooks
hooks/
localhooks/
# created when packaging, don't version control this
src/scip/githash.c
# settings
settings/
!check/coverage/settings
# tests
tests/Testing
tests/Criterion
tests/CTestTestfile.cmake
tests/*.swp
tests/*.swo
# tex documents
tex/*
!tex/*.tex
!tex/*.bib
### applications and examples
# testrun files in check folders
applications/*/check/locks/
applications/*/check/results/
applications/*/check/instances
applications/*/check/*.sh
applications/*/check/*.awk
# cmake build folder
applications/*/build
# doc files of applications
applications/*/doc/doxygen
applications/*/doc/html
applications/*/doc/footer.html
applications/*/doc/scipfooter.html
applications/*/doc/scip.css
applications/*/doc/scippy.png
applications/*/doc/miniscippy.png
applications/*/doc/userguide.*
applications/*/!doc/userguide.tex
# lint folder
applications/*/lint
# same for examples
examples/*/check/locks/
examples/*/check/results/
examples/*/check/instances
examples/*/check/*.sh
examples/*/check/*.awk
example/*/build
examples/*/doc/doxygen
examples/*/doc/html
examples/*/doc/footer.html
examples/*/doc/scipfooter.html
examples/*/doc/scip.css
examples/*/doc/scippy.png
examples/*/doc/miniscippy.png
examples/*/doc/userguide.*
examples/*/!doc/userguide.tex
examples/*/lint
!.github/workflows/*
# avoid ignoring files in ci folder
!ci/*