浏览代码

fixed some tables here and there

andreagus 9 年之前
父节点
当前提交
6257e169b9
共有 3 个文件被更改,包括 22 次插入18 次删除
  1. 3 2
      Artificial Intelligence/lesson_01.md
  2. 18 15
      Artificial Intelligence/lesson_03.md
  3. 1 1
      Software Engineering 2/lesson_04.md

+ 3 - 2
Artificial Intelligence/lesson_01.md

@@ -23,8 +23,9 @@ Create machines or entities who can act as humans.
 Alan Turing in 1950 defined the imitation game, later being known as the turing test.
 Alan Turing in 1950 defined the imitation game, later being known as the turing test.
 ```
 ```
 #### The __original formulation__ is the following
 #### The __original formulation__ is the following
-Man|Interrogator|Human
----|---|---
+|Man|Interrogator|Human|
+|---|---|---|
+
 The interrogator can interact with the two subject using a typewriter
 The interrogator can interact with the two subject using a typewriter
 The goal of the man is to try to let the interrogator think he is a woman.
 The goal of the man is to try to let the interrogator think he is a woman.
 The role of the woman is to try to let the interrogator know she is really a woman.
 The role of the woman is to try to let the interrogator know she is really a woman.

+ 18 - 15
Artificial Intelligence/lesson_03.md

@@ -29,11 +29,12 @@ The problem can be formulated defining the following five elements:
 1. The __initial state__: a description of the initial situation of the problem
 1. The __initial state__: a description of the initial situation of the problem
 2. __Actions__ (s) = {actions that are applicable is s} Return the legal moves from the state s.
 2. __Actions__ (s) = {actions that are applicable is s} Return the legal moves from the state s.
 
 
- The state s<sub>0</sub> is
- 7|2|3
- ---|---|---
- 1|4|8
-6|5|
+The state s<sub>0</sub> is
+
+|7|2|3|
+|---|---|---|
+|1|4|8|
+|6|5|4|
 
 
 Actions(s<sub>0</sub>)={$\leftarrow,\uparrow$}
 Actions(s<sub>0</sub>)={$\leftarrow,\uparrow$}
 3. __Result__ (s,a) = s' have the chosen move as argument and returns the new state.  
 3. __Result__ (s,a) = s' have the chosen move as argument and returns the new state.  
@@ -71,16 +72,18 @@ The __optimal solution__ is the solution with *minimum* path cost.
 Our model is limited to the relevant aspects of the problem, for example it doesn't comprehend the color of the tiles in the 8 puzzle.
 Our model is limited to the relevant aspects of the problem, for example it doesn't comprehend the color of the tiles in the 8 puzzle.
 
 
 ### The 8 queens problem  
 ### The 8 queens problem  
--|1|2|3|4|5|6|7|8
----|---|---|---|---|---|---|---|---
-1|Q
-2|
-3|
-4|||||||Q
-5|
-6|
-7|
-8|
+
+|-|1|2|3|4|5|6|7|8|
+|---|---|---|---|---|---|---|---|---|
+|1|Q||||||||
+|2|||||||||
+|3|||||||||
+|4|||||||Q||
+|5||||||||||
+|6||||||||||
+|7||||||||||
+|8||||||||||
+
 We have to place the 8 queens so that no two queens are in the same row, column or diagonal.
 We have to place the 8 queens so that no two queens are in the same row, column or diagonal.
 #### first problem formulation:
 #### first problem formulation:
 1. initial state:   empty board
 1. initial state:   empty board

+ 1 - 1
Software Engineering 2/lesson_04.md

@@ -83,4 +83,4 @@ Nonfunctional requirements are also calles __QoS requirements__
 
 
 ### Project initiation
 ### Project initiation
 
 
-An important step is making an __Interview__ with the customers 
+An important step is making an __Interview__ with the customers