-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop cpput, C++14, various small fixes and updates.
- Loading branch information
Showing
60 changed files
with
182 additions
and
15,443 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,56 @@ | ||
{ | ||
"BasedOnStyle": "Google", | ||
"AccessModifierOffset": -4, | ||
"ConstructorInitializerIndentWidth": 2, | ||
"AlignAfterOpenBracket": "AlwaysBreak", | ||
"AlignEscapedNewlinesLeft": false, | ||
"AlignTrailingComments": true, | ||
"AllowAllParametersOfDeclarationOnNextLine": false, | ||
"AllowShortIfStatementsOnASingleLine": false, | ||
"AllowShortLoopsOnASingleLine": false, | ||
"AllowShortFunctionsOnASingleLine": "None", | ||
"AllowShortIfStatementsOnASingleLine": false, | ||
"AllowShortLoopsOnASingleLine": false, | ||
"AlwaysBreakTemplateDeclarations": true, | ||
"AlwaysBreakBeforeMultilineStrings": false, | ||
"AlwaysBreakTemplateDeclarations": true, | ||
"BasedOnStyle": "Google", | ||
"BinPackArguments": false, | ||
"BinPackParameters": false, | ||
"BreakBeforeBinaryOperators": "NonAssignment", | ||
"BreakBeforeBraces": "Allman", | ||
"BreakBeforeTernaryOperators": false, | ||
"BreakConstructorInitializersBeforeComma": true, | ||
"BreakStringLiterals": false, | ||
"BinPackParameters": false, | ||
"BinPackArguments": false, | ||
"ColumnLimit": 120, | ||
"ColumnLimit": 120, | ||
"ConstructorInitializerAllOnOneLineOrOnePerLine": true, | ||
"ConstructorInitializerIndentWidth": 2, | ||
"ContinuationIndentWidth": 8, | ||
"Cpp11BracedListStyle": false, | ||
"DerivePointerAlignment": false, | ||
"DerivePointerBinding": true, | ||
"ExperimentalAutoDetectBinPacking": false, | ||
"FixNamespaceComments": true, | ||
"IndentCaseLabels": true, | ||
"IndentFunctionDeclarationAfterType": false, | ||
"IndentPPDirectives": "AfterHash", | ||
"IndentWidth": 4, | ||
"IndentWrappedFunctionNames": true, | ||
"MaxEmptyLinesToKeep": 3, | ||
"NamespaceIndentation": "All", | ||
"ObjCSpaceBeforeProtocolList": true, | ||
"PenaltyBreakBeforeFirstCallParameter": 19, | ||
"PenaltyBreakComment": 60, | ||
"PenaltyBreakString": 1, | ||
"PenaltyBreakFirstLessLess": 1000, | ||
"PenaltyBreakString": 1, | ||
"PenaltyExcessCharacter": 500, | ||
"PenaltyReturnTypeOnItsOwnLine": 1000, | ||
"PointerAlignment": "Right", | ||
"PointerBindsToType": false, | ||
"SpacesBeforeTrailingComments": 2, | ||
"Cpp11BracedListStyle": false, | ||
"Standard": "Auto", | ||
"IndentWidth": 4, | ||
"TabWidth": 4, | ||
"UseTab": "Never", | ||
"BreakBeforeBraces": "Allman", | ||
"IndentFunctionDeclarationAfterType": false, | ||
"SpacesInParentheses": false, | ||
"SpacesInAngles": false, | ||
"SpaceInEmptyParentheses": false, | ||
"SpacesInCStyleCastParentheses": false, | ||
"SortIncludes": false, | ||
"SpaceAfterControlStatementKeyword": true, | ||
"SpaceBeforeAssignmentOperators": true, | ||
"ContinuationIndentWidth": 8, | ||
"SortIncludes": false, | ||
"IndentPPDirectives": "AfterHash", | ||
"DerivePointerAlignment": false, | ||
"PointerAlignment": "Right", | ||
"FixNamespaceComments": true, | ||
"IndentWrappedFunctionNames": true, | ||
"Standard": "Cpp03", | ||
"SpaceInEmptyParentheses": false, | ||
"SpacesBeforeTrailingComments": 2, | ||
"SpacesInAngles": false, | ||
"SpacesInCStyleCastParentheses": false, | ||
"SpacesInParentheses": false, | ||
"Standard": "c++17", | ||
"TabWidth": 4, | ||
"UseTab": "Never", | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,31 @@ env: | |
|
||
jobs: | ||
deb_cloudsmith: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: $APT libeigen3-dev | ||
- run: make deb_install_deps_cloudsmith | ||
- run: env CLOUDSMITH_API_KEY=${{ secrets.CLOUDSMITH_API_KEY }} make deb_cloudsmith_any | ||
|
||
|
||
gh_pages: | ||
runs-on: ubuntu-22.04 | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
- run: $APT doxygen | ||
- run: make dox | ||
- run: | | ||
cd doc/gh-pages | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add * | ||
git commit -a -m "Automated update ${{ github.ref_name }}" | ||
git push |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
build | ||
scanbuild_results | ||
include/qpmad/config.h | ||
include/qpmad/cpput*.h | ||
matlab_octave/make.m | ||
*.mex* | ||
*.o |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ cholesky | |
copysign | ||
cpput | ||
decltype | ||
dndebug | ||
downdate | ||
eigenut | ||
fstream | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.