-
Notifications
You must be signed in to change notification settings - Fork 189
/
.gitignore
73 lines (62 loc) · 956 Bytes
/
.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
# Ignore everything in this directory
*~
*.o
*.o.d
*.gcov
bin/
build*/
cmake-build-debug
docs/doxygen
docs/sphinx
_build/
api/
doxyoutput/
.ipynb_checkpoints
test/build
test/bin
output.txt
Doxyfile
apidoc_warning_logfile.txt
third-party/distros/gmp-6.1.1
third-party/distros/gmp-6.1.2
third-party/distros/ntl-10.3.0
third-party/distros/ntl-10.5.0
third-party/include/NTL
third-party/include/gmp.h
third-party/lib
third-party/share
**/gmp-*
**/ntl-*
timing/
gmon.out
## .gitattributes
# Except this file
!.gitignore
.idea
*/**/*.gch
*.a
*.class
## for the moment
.cproject
.metadata/
.project
.settings/
RemoteSystemTempFiles/
.classpath
.externalToolBuilders/
/Default/
.DS_Store
# Ignore intellij project files/cmake files
# CMakeLists.txt
.idea/
src/circuit/lib/scan.cpp
src/circuit/lib/parse.cpp
src/circuit/lib/parse.hpp
src/circuit/lib/*.hh
# vagrant output
.vagrant/
*.log
# gtest output files
test_detail.xml
# Visual Studio Code
.vscode