From c3b97af4567c0a26d3e5f50539403619c6118aee Mon Sep 17 00:00:00 2001 From: udlbook <110402648+udlbook@users.noreply.github.com> Date: Mon, 16 Sep 2024 09:21:22 -0400 Subject: [PATCH] Created using Colab --- Notebooks/Chap06/6_1_Line_Search.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Notebooks/Chap06/6_1_Line_Search.ipynb b/Notebooks/Chap06/6_1_Line_Search.ipynb index ec6a288..67e0095 100644 --- a/Notebooks/Chap06/6_1_Line_Search.ipynb +++ b/Notebooks/Chap06/6_1_Line_Search.ipynb @@ -130,7 +130,8 @@ "\n", " print('Iter %d, a=%3.3f, b=%3.3f, c=%3.3f, d=%3.3f'%(n_iter, a,b,c,d))\n", "\n", - " # Rule #1 If the HEIGHT at point A is less than the HEIGHT at points B, C, and D then halve values of B, C, and D\n", + " # Rule #1 If the HEIGHT at point A is less than the HEIGHT at points B, C, and D then move them to they are half\n", + " # as far from A as they start\n", " # i.e. bring them closer to the original point\n", " # TODO REPLACE THE BLOCK OF CODE BELOW WITH THIS RULE\n", " if (0):\n",