-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.gitignore
135 lines (111 loc) · 1.64 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
# Profile files
profile/*.out
profile/profile
.DS_store
# Package files
pkg/python/*
pkg/include/*
pkg/lib/*
pkg/doc/*
build/
# Documentation
doc/latex/*
doc/html/*
doc/python/build
# Executables/ test files
tests/lowd
tests/highd
tests/hivpopulation
tests/recombination_lowd
tests/test_genealogy
tests/test.npz
tests/test.txt
tests/FFPopSim.py
tests/FFPopSim.pyc
tests/_FFPopSim.so
# SWIG generated files (they are kept in the static-gsl branch)
src/python/FFPopSim.py
src/python/FFPopSim_wrap.cpp
# Compiled Object files
*.slo
*.lo
*.o
*.h.gch
# Compiled Dynamic libraries
*.so
# Compiled Static libraries
*.lai
*.la
*.a
# Byte-compiled Python
*.pyc
*.pyo
# Packages
*.egg
*.egg-info
dist
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
MANIFEST
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
# Translations
*.mo
# LaTeX stuff
doc/swig/*.acn
doc/swig/*.acr
doc/swig/*.alg
doc/swig/*.aux
doc/swig/*.bbl
doc/swig/*.blg
doc/swig/*.dvi
doc/swig/*.fls
doc/swig/*.fdb_latexmk
doc/swig/*.glg
doc/swig/*.glo
doc/swig/*.gls
doc/swig/*.idx
doc/swig/*.ilg
doc/swig/*.ind
doc/swig/*.ist
doc/swig/*.lof
doc/swig/*.log
doc/swig/*.lot
doc/swig/*.maf
doc/swig/*.mtc
doc/swig/*.mtc0
doc/swig/*.nav
doc/swig/*.nlo
doc/swig/*.out
doc/swig/*.pdfsync
doc/swig/*.ps
doc/swig/*.snm
doc/swig/*.synctex.gz
doc/swig/*.toc
doc/swig/*.vrb
doc/swig/*.xdy
# backup
*~
# Vim
.*.sw[a-z]
*.un~
Session.vim
# Eclipse
.pydevproject
Debug
Release
# Do not keep the binaries
# (they are kept in the static_gsl branch)
\.ipynb_checkpoints/
examples/tree_N=10000_r=0.0_L=1000_s=0.01.pdf
examples/tree_N=200_r=0.0_L=1000_U=0.1_s=-1e-06.pdf
examples/*.png
/\.cache