This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Number of data sets in generated Decathlon.dat; | |
# 1,000,000 is usually ~500MB | |
num_sets=1000000 | |
github="https://github.com" | |
rxvm="eriknyquist/regexvm" | |
fuzz="eriknyquist/ibm2016fuzz" | |
fuzzer="ibm2016fuzz/gen_decathlon_input" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
Language: Cpp | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -2 | |
AlignAfterOpenBracket: true | |
AlignEscapedNewlinesLeft: false | |
AlignOperands: true | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This pre-commit hook checks if any versions of clang-format | |
# are installed, and if so, uses the installed version to format | |
# the staged changes. | |
maj_min=1 | |
maj_max=3 | |
base=clang-format |