From 7a7a4bb26dd035b262bab9285c664053d5f1dfe2 Mon Sep 17 00:00:00 2001 From: TimLai666 <43640816+TimLai666@users.noreply.github.com> Date: Fri, 1 Nov 2024 17:07:04 +0800 Subject: [PATCH] Update lpgen.md --- Docs/lpgen.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Docs/lpgen.md b/Docs/lpgen.md index e2100f5..65aa718 100644 --- a/Docs/lpgen.md +++ b/Docs/lpgen.md @@ -111,8 +111,11 @@ This example defines a simple linear programming model with two variables and co #### LINGO Support +The `lpgen` package also supports LINGO, which is a popular optimization software. + 1. `ParseLingoModel_txt` - Parse LINGO model from txt file. Go to `LINGO > Generate > Display Model` in LINGO to get the model. + Parse LINGO model from txt file. It turns LINGO model to standard lp model. + Go to `LINGO > Generate > Display Model` in LINGO to get the model. ```go func ParseLingoModel_txt(filePath string) *LPModel ```