From 28a84589d10c0fb50345d5df89d1f869c30078f7 Mon Sep 17 00:00:00 2001 From: moebiusl Date: Fri, 11 Oct 2024 22:09:17 +0200 Subject: [PATCH] del unused variable --- src/app/glp/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/glp/page.tsx b/src/app/glp/page.tsx index 5275721..57adaac 100644 --- a/src/app/glp/page.tsx +++ b/src/app/glp/page.tsx @@ -164,7 +164,7 @@ const GlpPage = () => { GLPKAPI._glp_mpl_init_rand(tran, 1); GLPKAPI.glp_mpl_read_model_from_string(tran, "model", model, 0); - GLPKAPI.glp_mpl_generate(tran, null, function (data) { }); + GLPKAPI.glp_mpl_generate(tran, null, function () { }); addMessage("Model successfully converted to solver format."); GLPKAPI.glp_mpl_build_prob(tran, lp);