Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
088f395
prototype non-linear CHC solver
gruhn Aug 2, 2023
c049b43
initialization
ffrohn Sep 28, 2023
1153ed5
work on non-linear solver
gruhn Oct 16, 2023
de92b29
non-linear solver: fix several issues
gruhn Oct 19, 2023
e056f02
fix for replaceNode
ffrohn Oct 5, 2023
ddbdd50
LIA benchmark results after replaceNode fix
gruhn Oct 19, 2023
f2b8163
non-linear: disable linear path chaining
gruhn Oct 29, 2023
0b5e559
non-linear: fix resolution issue
gruhn Oct 29, 2023
aaecfae
non-linear: same file for benchmark results of Z3/ADCL
gruhn Nov 2, 2023
e5c2c0e
non-linear: update benchmark results
gruhn Nov 2, 2023
206597e
non-linear: reduce redundant resolvents
gruhn Nov 6, 2023
1693dbc
propagate program variable equalities
gruhn Nov 12, 2023
df291ea
non-linear: introduce "constraint tiers"
gruhn Nov 20, 2023
c5db2a4
non-linear: benchmark with 10 second timeout
gruhn Nov 23, 2023
7ca8e6f
non-linear: detect redundant (up to renaming) facts
gruhn Nov 27, 2023
2a11ae8
non-linear: don't call refineDependencyGraph
gruhn Nov 27, 2023
66a46c1
move syntactic redundancy check into linear solver
gruhn Dec 4, 2023
a9e9bdc
non-linear: chc comp23 results
gruhn Jan 14, 2024
2491756
non-linear: eliminate unilaterally resolvable CHCs
gruhn Jan 14, 2024
eb6bd51
fix: still redundant resolvents in non-linear solver
gruhn Jan 22, 2024
b65cfc6
non-linear: merge facts with same RHS predicate
gruhn Feb 1, 2024
7a85707
Merge remote-tracking branch 'origin/master' into polyaccel-nonlinear
gruhn Feb 11, 2024
d62057d
Merge remote-tracking branch 'origin/master' into temp
gruhn Feb 26, 2024
39ae229
non-linear: various post-merge fixes
gruhn Feb 26, 2024
b2f88c3
Merge remote-tracking branch 'origin/master' into temp
gruhn Mar 2, 2024
d4385a9
non-linear: fixed unsat/sat conflict
gruhn Mar 2, 2024
7c815d8
non-linear: compute resolvents with incremental SMT
gruhn Mar 8, 2024
9a39015
non-linear: correct Z3 benchmark results
gruhn Mar 8, 2024
20fe058
Merge remote-tracking branch 'origin/master' into polyaccel-nonlinear
gruhn Mar 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ benchlog
benchscores
koat-examples
benchmarks*
# Actually I find it kind of important to track benchmark results
# in git, to see how they are affected by changes in the codebase.
!benchmarks/

# hidden files
.*
Expand All @@ -40,6 +43,7 @@ build
build-static
bundle
CMakeFiles
CMakeCache.txt
compile_commands.json
loat-static
LoAT.*
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ endif()
add_compile_options(-Wall -Wextra -pedantic -Wno-unused-parameter)

set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELEASE} -g")
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

message(STATUS "Build type: " ${CMAKE_BUILD_TYPE})
message(STATUS "Compiler flags:" ${CMAKE_CXX_COMPILE_FLAGS})
Expand Down
Loading