3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-25 15:09:32 +00:00

gcd reduce and use c().val for sign constraints

This commit is contained in:
Nikolaj Bjorner 2025-10-01 18:42:34 -07:00
parent 538480b4f8
commit 5846570012
3 changed files with 157 additions and 81 deletions

View file

@ -8,7 +8,7 @@ BasedOnStyle: LLVM
IndentWidth: 4
TabWidth: 4
UseTab: Never
IndentCaseLabels: false
# Column width
ColumnLimit: 120
@ -36,6 +36,7 @@ BraceWrapping:
AfterNamespace: false
AfterStruct: false
BeforeElse : true
AfterCaseLabel: false
# Spacing
SpaceAfterCStyleCast: false
SpaceAfterLogicalNot: false
@ -65,6 +66,11 @@ SortIncludes: false # Z3 has specific include ordering conventions
# Namespaces
NamespaceIndentation: All
# Switch statements
IndentCaseLabels: false
AllowShortCaseLabelsOnASingleLine: true
IndentCaseBlocks: false
# Comments and documentation
ReflowComments: true
SpacesBeforeTrailingComments: 2