forked from richard-evans/vampire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
88 lines (76 loc) · 1.73 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
#----------------------------------------------
# Git Ignore file for vampire source code
#----------------------------------------------
#----------------------------------------------
# Ignore object files
#----------------------------------------------
*.o
#----------------------------------------------
# Ignore temporary editor files
#----------------------------------------------
*~
*.swp
*.swo
#----------------------------------------------
# Povray files
#----------------------------------------------
*.png
*.pov
*.inc
*.ini
#----------------------------------------------
# OSX/macOS files
#----------------------------------------------
*.DS_Store
#----------------------------------------------
# Other sundry files
#----------------------------------------------
*old.cpp
*old.hpp
*.bkp
*.json
vampire.pkg # installation package
#----------------------------------------------
# Profiling and debugging extensions
#----------------------------------------------
*.gcno
#----------------------------------------------
# Manual files to be ignored
#----------------------------------------------
vampire_manual.pdf
vampire_manual.out
vampire_manual.synctex.gz
.texpadtmp
#----------------------------------------------
# Data file formats in vampire
#----------------------------------------------
*.cfg
*.data
*.meta
crystal.xyz
log
grain
output
MPI-compute-times
MPI-wait-times
tags
.vimrc
*.d
MAT.mat
UC.ucf
exchange-template
#----------------------------------------------
# Executables
#----------------------------------------------
vampire-serial
vampire-parallel
vdc.x
vampire*
#----------------------------------------------
# Obsolete
#----------------------------------------------
cfg2povray
cfg2rasmol
log.*
run/unit-cell-creator
#EOF