From f5df073aa56cfeb584ebf564c19d2fd506da6143 Mon Sep 17 00:00:00 2001 From: Ziang LIU <50853393+zi-ang-liu@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:59:00 +0900 Subject: [PATCH] Update week-3.md --- practice-on-systems-engineering/contents/week-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practice-on-systems-engineering/contents/week-3.md b/practice-on-systems-engineering/contents/week-3.md index 4289509..77cc42d 100644 --- a/practice-on-systems-engineering/contents/week-3.md +++ b/practice-on-systems-engineering/contents/week-3.md @@ -72,7 +72,7 @@ RSのアルゴリズムは以下の通りです。 3. Return $\mathbf{x}$ ``` -RSは、まず探索空間内の一つの実行可能解をランダムに選択します。その後、指定された回数だけ探索を繰り返し、新しい解がより良い場合には解を更新します。 +RSは、まず探索空間内の一つの実行可能解$\mathbf{x}\in\mathcal{X}$をランダムに選択します。その後、指定された回数だけ探索を繰り返し、新しい解がより良い場合には解を更新します。 ## 課題