Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build/
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Features:
-----------
- checking of each derivation with empty assumptionlist while processing the DER section, terminating early if RTP is proven
- error messages more descriptive
- a warning is issued if the numbers in the labels are not consistent with the internal VIPR counter.
Comment on lines +6 to +7

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- error messages more descriptive
- a warning is issued if the numbers in the labels are not consistent with the internal VIPR counter.
- more descriptive error messages
- issue a warning if the numbers in the labels are not consistent with the internal VIPR counter


Build system
------------
Expand Down
8 changes: 4 additions & 4 deletions code/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ if(VIPRCOMP)
set(libs ${libs} ${SOPLEX_LIBRARIES})

# add viprcomp target and link
add_executable(viprcomp viprcomp.cpp)
add_executable(viprcompseq viprcompseq.cpp)
add_executable(viprincomp incompletify.cpp)
add_definitions(-DSOPLEX_WITH_GMP)
target_link_libraries(viprcomp ${libs})
target_link_libraries(viprcompseq ${libs})
target_link_libraries(viprincomp ${libs})
target_link_libraries(viprcomp ${libs})
target_link_libraries(viprcomp TBB::tbb)
target_link_libraries(viprcompseq ${libs})
# target_link_libraries(viprcompseq TBB::tbb)
message(STATUS "Soplex found.")
else()
message(STATUS "viprcomp not installed, because SoPlex could not be found.")
Expand Down
Loading