From eb9bdd852843e6b25ad5b026884b0ece45e25122 Mon Sep 17 00:00:00 2001 From: shlff Date: Thu, 25 Jul 2024 14:48:12 +1000 Subject: [PATCH 1/4] [lp_intro] add an admonition --- lectures/lp_intro.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lectures/lp_intro.md b/lectures/lp_intro.md index 27c8093f..546c28ea 100644 --- a/lectures/lp_intro.md +++ b/lectures/lp_intro.md @@ -40,6 +40,12 @@ We provide a standard form of a linear program and methods to transform other fo We tell how to solve a linear programming problem using [SciPy](https://scipy.org/) and [Google OR-Tools](https://developers.google.com/optimization). +```{seealso} +In a {doc}`lecture ` of our another lecture series, +we will employ the linear programming method to solve the +[optimal transport problem](https://en.wikipedia.org/wiki/Transportation_theory_(mathematics)). +``` + Let's start with some standard imports. ```{code-cell} ipython3 From d711486705aec7a5bef673e8d6fd0e106817eab0 Mon Sep 17 00:00:00 2001 From: shlff Date: Thu, 25 Jul 2024 14:56:33 +1000 Subject: [PATCH 2/4] edits --- lectures/lp_intro.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lectures/lp_intro.md b/lectures/lp_intro.md index 546c28ea..f1e8f357 100644 --- a/lectures/lp_intro.md +++ b/lectures/lp_intro.md @@ -41,9 +41,8 @@ We provide a standard form of a linear program and methods to transform other fo We tell how to solve a linear programming problem using [SciPy](https://scipy.org/) and [Google OR-Tools](https://developers.google.com/optimization). ```{seealso} -In a {doc}`lecture ` of our another lecture series, -we will employ the linear programming method to solve the -[optimal transport problem](https://en.wikipedia.org/wiki/Transportation_theory_(mathematics)). +In another lecture, we will employ the linear programming method to solve the +{doc}`optimal transport problem `. ``` Let's start with some standard imports. From f0f45b5eaf1b8a4addef1594e6e8abc3681925db Mon Sep 17 00:00:00 2001 From: Shu Hu Date: Thu, 25 Jul 2024 17:17:02 +1000 Subject: [PATCH 3/4] Update lectures/lp_intro.md Co-authored-by: Matt McKay --- lectures/lp_intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/lp_intro.md b/lectures/lp_intro.md index f1e8f357..b07e9c0b 100644 --- a/lectures/lp_intro.md +++ b/lectures/lp_intro.md @@ -42,7 +42,7 @@ We tell how to solve a linear programming problem using [SciPy](https://scipy.or ```{seealso} In another lecture, we will employ the linear programming method to solve the -{doc}`optimal transport problem `. +{doc}`optimal transport problem `. ``` Let's start with some standard imports. From 065f0413b21f93bffd6aa69d780145ec3a0c2de5 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Fri, 26 Jul 2024 16:28:00 +1000 Subject: [PATCH 4/4] Update lectures/lp_intro.md --- lectures/lp_intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/lp_intro.md b/lectures/lp_intro.md index b07e9c0b..bf808bd5 100644 --- a/lectures/lp_intro.md +++ b/lectures/lp_intro.md @@ -42,7 +42,7 @@ We tell how to solve a linear programming problem using [SciPy](https://scipy.or ```{seealso} In another lecture, we will employ the linear programming method to solve the -{doc}`optimal transport problem `. +{doc}`optimal transport problem `. ``` Let's start with some standard imports.