Skip to content
This repository was archived by the owner on Jul 26, 2022. It is now read-only.

Commit ebf3f4a

Browse files
committedJul 11, 2019
OSS push
1 parent 0f697c0 commit ebf3f4a

File tree

963 files changed

+185344
-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.

963 files changed

+185344
-0
lines changed
 

‎.clang-format

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
AccessModifierOffset: -1
3+
AlignAfterOpenBracket: AlwaysBreak
4+
AlignConsecutiveAssignments: false
5+
AlignConsecutiveDeclarations: false
6+
AlignEscapedNewlinesLeft: true
7+
AlignOperands: false
8+
AlignTrailingComments: false
9+
AllowAllParametersOfDeclarationOnNextLine: false
10+
AllowShortBlocksOnASingleLine: false
11+
AllowShortCaseLabelsOnASingleLine: false
12+
AllowShortFunctionsOnASingleLine: Empty
13+
AllowShortIfStatementsOnASingleLine: false
14+
AllowShortLoopsOnASingleLine: false
15+
AlwaysBreakBeforeMultilineStrings: true
16+
AlwaysBreakTemplateDeclarations: true
17+
BinPackArguments: false
18+
BinPackParameters: false
19+
BreakBeforeBinaryOperators: false
20+
BreakBeforeBraces: Attach
21+
BreakConstructorInitializersBeforeComma: false
22+
ColumnLimit: 80
23+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
24+
ConstructorInitializerIndentWidth: 4
25+
ContinuationIndentWidth: 4
26+
Cpp11BracedListStyle: true
27+
DerivePointerAlignment: false
28+
ExperimentalAutoDetectBinPacking: true
29+
IndentCaseLabels: true
30+
IndentFunctionDeclarationAfterType: false
31+
IndentWidth: 2
32+
KeepEmptyLinesAtTheStartOfBlocks: false
33+
MaxEmptyLinesToKeep: 1
34+
NamespaceIndentation: None
35+
ObjCSpaceBeforeProtocolList: false
36+
PenaltyBreakBeforeFirstCallParameter: 1
37+
PenaltyBreakComment: 300
38+
PenaltyBreakFirstLessLess: 120
39+
PenaltyBreakString: 1000
40+
PenaltyExcessCharacter: 1000000
41+
PenaltyReturnTypeOnItsOwnLine: 200
42+
PointerAlignment: Left
43+
ReflowComments: true
44+
SortIncludes: true
45+
SpaceAfterCStyleCast: false
46+
SpaceAfterControlStatementKeyword: true
47+
SpaceBeforeAssignmentOperators: true
48+
SpaceInEmptyParentheses: false
49+
SpacesBeforeTrailingComments: 1
50+
SpacesInAngles: false
51+
SpacesInCStyleCastParentheses: false
52+
SpacesInParentheses: false
53+
SpacesInSquareBrackets: false
54+
Standard: Cpp11
55+
TabWidth: 8
56+
UseTab: Never
57+
...

‎.gitignore

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
*~
2+
=9.0
3+
CMakeCache.txt
4+
CMakeFiles
5+
cmake_install.cmake
6+
CTestTestfile.cmake
7+
Makefile
8+
*.swp
9+
*.[ao]
10+
*.so
11+
doxygen
12+
Testing
13+
openbw/build
14+
*_cotire.cmake
15+
cotire/
16+
*.mpq
17+
Doxyfile
18+
build/
19+
/*.dll
20+
bwapi-data
21+
__pycache__
22+
*.pyc
23+
24+
# Node
25+
node_modules
26+
package-lock.json
27+
28+
# binaries
29+
cherrypi
30+
cherrypi-exp
31+
32+
# Test Output
33+
/core
34+
cherrypi.log
35+
opponent.log
36+
tc_bwapilauncher.log
37+
.gdb_history
38+
39+
# Model checkpoint
40+
train_micro.bin
41+
42+
# Windows binaries/libraries
43+
3rdparty/*.lib
44+
3rdparty/libzmq
45+
deps/
46+
Debug/
47+
Release/
48+
49+
########################################
50+
# VisualStudio
51+
52+
.vs/
53+
VisualStudio/cherrypi/bwapilib/Release/
54+
VisualStudio/cherrypi/bwapilib/bwapilib.dir/
55+
VisualStudio/cherrypi/bwem/Release/
56+
VisualStudio/cherrypi/bwem/bwem.dir/
57+
VisualStudio/cherrypi/src/fair_rush.dir/
58+
VisualStudio/cherrypi/tc/torchcraft.dir/
59+
VisualStudio/cherrypi/tcbwapi/tcbwapi.dir/
60+
VisualStudio/gflags/gflags_static.dir/
61+
VisualStudio/gflags/lib/
62+
VisualStudio/glog/Release/
63+
VisualStudio/glog/glog.dir/
64+
VisualStudio/install/Debug
65+
VisualStudio/install/Release
66+
VisualStudio/install/include

0 commit comments

Comments
 (0)
This repository has been archived.