-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitignore
71 lines (60 loc) · 1007 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
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
# https://linuxize.com/post/gitignore-ignoring-files-in-git
# temporary files:
*.~*
*~
.\#*
\#*
# files generated by bison:
/src/lex.yy.c
/src/y.tab.c
/src/y.tab.h
# from compiler:
*.mod
*.o
# results from ci-tests:
/ci-tests/**/*.m
/ci-tests/**/*results*
/ci-tests/**/*.exe
/ci-tests/**/*.h
/ci-tests/**/*.log
# keep empty directory for executables, but not its contents:
/bin/*
!/bin/.gitkeep
# KPP-generated files:
*_Function*
*_Global*
*_Hessian*
*_HessianSP*
*_Initialize*
*_Integrator*
*_Jacobian*
*_JacobianSP*
*_LinearAlgebra*
*.log
*_Main*
*_mex_Fun*
*_mex_Hessian*
*_mex_Jac_SP*
*_Model*
*_Monitor*
*_Parameters*
*_Precision*
*_Rates*
*_Stoichiom*
*_StoichiomSP*
*_Util*
Makefile_*
# LaTeX and BibTeX files:
/manual/*.aux
/manual/*.bbl
/manual/*.blg
/manual/*.log
/manual/*.toc
# ReadTheDocs files
docs/build/*
# are there any *.dat files to exclude?
*.dat
# Other files/dirs to exclude
*.pdf
/examples/mcm/__pycache__