From a8e0eba5183f253247d228b4632f24fe9e722cea Mon Sep 17 00:00:00 2001
From: libeiqibns <37954296+libeiqibns@users.noreply.github.com>
Date: Wed, 25 Nov 2020 12:52:12 +0800
Subject: [PATCH] Update 5.3.md
First table in 5.3.md has a erroneous indentation. Deleted this indentation to correctly represent the table.
---
ch05/5.3/5.3.md | 64 ++++++++++++++++++++++++-------------------------
1 file changed, 32 insertions(+), 32 deletions(-)
diff --git a/ch05/5.3/5.3.md b/ch05/5.3/5.3.md
index 3d5c761a..c2204855 100644
--- a/ch05/5.3/5.3.md
+++ b/ch05/5.3/5.3.md
@@ -14,37 +14,37 @@
1.
-
-
-
- |
- 产生式 |
- 语法规则 |
-
-
-
-
- 1) |
- E -> E_1 + T |
- E.type = E_1.type === float || T.type === float ? float : int |
-
-
- 2) |
- E -> T |
- E.type = T.type |
-
-
- 3) |
- T -> num.num |
- T.type = float |
-
-
- 4) |
- T -> num |
- T.type = int |
-
-
-
+
+
+
+ |
+ 产生式 |
+ 语法规则 |
+
+
+
+
+ 1) |
+ E -> E_1 + T |
+ E.type = E_1.type === float || T.type === float ? float : int |
+
+
+ 2) |
+ E -> T |
+ E.type = T.type |
+
+
+ 3) |
+ T -> num.num |
+ T.type = float |
+
+
+ 4) |
+ T -> num |
+ T.type = int |
+
+
+
### 5.3.2 !
@@ -142,4 +142,4 @@
### 5.3.3 !
-给出一个 SDD 对 x\*(3\*x+x\*x) 这样的表达式求微分。表达式中涉及运算符 + 和 * 、变量 x 和常量。假设不进行任何简化,也就是说,比如 3\*x 将被翻译为 3\*1+0\*x。
\ No newline at end of file
+给出一个 SDD 对 x\*(3\*x+x\*x) 这样的表达式求微分。表达式中涉及运算符 + 和 * 、变量 x 和常量。假设不进行任何简化,也就是说,比如 3\*x 将被翻译为 3\*1+0\*x。