Skip to content

Commit 84e645e

Browse files
committedOct 22, 2018
Import ikos 1.3
0 parents  commit 84e645e

File tree

637 files changed

+119740
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

637 files changed

+119740
-0
lines changed
 

‎.clang-format

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
BasedOnStyle: Google
3+
---
4+
Language: Cpp
5+
SpacesInAngles: true
6+
AccessModifierOffset: -2
7+
DerivePointerAlignment: false
8+
AllowShortIfStatementsOnASingleLine: false
9+
AllowShortLoopsOnASingleLine: false
10+
AllowShortFunctionsOnASingleLine: Inline
11+
BinPackParameters: false
12+
BinPackArguments: false
13+
PenaltyBreakBeforeFirstCallParameter: 5000
14+
PenaltyReturnTypeOnItsOwnLine: 500
15+
SpacesBeforeTrailingComments: 1
16+
---

‎.gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
build
2+
3+
# Editors
4+
*.swp
5+
*~
6+
.ycm_extra_conf.py
7+
8+
# Python
9+
*.pyc
10+
__pycache__
11+
12+
# Object files
13+
*.o
14+
*.ko
15+
*.obj
16+
*.elf
17+
18+
# Libraries
19+
*.lib
20+
*.a
21+
22+
# Shared objects (inc. Windows DLLs)
23+
*.dll
24+
*.so
25+
*.so.*
26+
*.dylib
27+
28+
# Executables
29+
*.exe
30+
*.out
31+
*.app
32+
*.i*86
33+
*.x86_64
34+
*.hex
35+
36+
# IKOS
37+
*.ar
38+
*.db

0 commit comments

Comments
 (0)