From 7faf7ad63b67785479673b1aac5a3149c4dd7b0d Mon Sep 17 00:00:00 2001 From: ZedongPeng Date: Fri, 30 Jan 2026 13:02:08 -0500 Subject: [PATCH 1/3] update PSLP to v0.0.5 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f3a3cd8..76e3cd0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -107,7 +107,7 @@ if (CUPDLPX_BUILD_PYTHON) find_package(Python3 COMPONENTS Interpreter REQUIRED) # For versioning script and pybind11 endif() -set(PSLP_VERSION_TAG "v0.0.4") +set(PSLP_VERSION_TAG "v0.0.5") FetchContent_Declare( pslp From c89c9fbb1f592364e6f6fef564389d57b7f0fbf3 Mon Sep 17 00:00:00 2001 From: ZedongPeng Date: Fri, 30 Jan 2026 18:09:24 -0500 Subject: [PATCH 2/3] update to PSLP v0.0.6 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76e3cd0..447a03f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -107,7 +107,7 @@ if (CUPDLPX_BUILD_PYTHON) find_package(Python3 COMPONENTS Interpreter REQUIRED) # For versioning script and pybind11 endif() -set(PSLP_VERSION_TAG "v0.0.5") +set(PSLP_VERSION_TAG "v0.0.6") FetchContent_Declare( pslp From 6f74b3cb7f70736ca0d735e73969aa70895b6381 Mon Sep 17 00:00:00 2001 From: Zedong Peng Date: Fri, 30 Jan 2026 18:16:15 -0500 Subject: [PATCH 3/3] fix log warning --- src/presolve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/presolve.c b/src/presolve.c index 102ed0d..a106c7b 100644 --- a/src/presolve.c +++ b/src/presolve.c @@ -100,7 +100,7 @@ cupdlpx_presolve_info_t *pslp_presolve(const lp_problem_t *original_prob, const { printf(" %-15s : %s\n", "status", get_presolve_status_str(status)); printf(" %-15s : %.3g sec\n", "presolve time", info->presolve_time); - printf(" %-15s : %d rows, %d columns, %d nonzeros\n", + printf(" %-15s : %zu rows, %zu columns, %zu nonzeros\n", "reduced problem", info->presolver->reduced_prob->m, info->presolver->reduced_prob->n,