Commit 1e8b2315aa3763ce0442d5b67bd78e964e07eb45
1 parent
bf9b2613
Exists in
master
Notas com AMartins - estrutura do relatório
Showing
1 changed file
with
21 additions
and
8 deletions
Show diff stats
students/amartins/tarefas/notas.md
1 | 1 | # Notas com Alice Martins |
2 | 2 | |
3 | +## 2024-01-30 | |
4 | + | |
5 | +### Estrutura do Relatório | |
6 | + | |
7 | +1. Introdução - programação lógica; redes bayesianas; programação lógica probabilística. Ferramentas. Problema | |
8 | +2. Desenvolvimento | |
9 | + 1. Exposição - desenvolvimento | |
10 | + 2. Crítica positiva - testes, documentação, funcionalidade | |
11 | + 3. Crítica negativa | |
12 | +3. Conclusões | |
13 | + 1. Balanço do que foi feito, comparando os +/-, | |
14 | + 2. visão de problemas a resolver e outras tarefas futuras. | |
15 | + | |
3 | 16 | ## 2023-05-04 |
4 | 17 | |
5 | 18 | ### Problemas |
... | ... | @@ -9,17 +22,17 @@ |
9 | 22 | 1. Está a contar os nós "in" e os nós "out" ao contrário, certo? `len(children)` diz quantas arestas saem de `x`. |
10 | 23 | 2. Em |
11 | 24 | ```python |
12 | - if len(parents) != 0: | |
13 | - asc += 1 | |
14 | - if len(children) != 0: | |
15 | - des += 1 | |
25 | + if len(parents) != 0: | |
26 | + asc += 1 | |
27 | + if len(children) != 0: | |
28 | + des += 1 | |
16 | 29 | ``` |
17 | 30 | deve ser |
18 | 31 | ```python |
19 | - if len(parents) != 0: | |
20 | - des += 1 | |
21 | - if len(children) != 0: | |
22 | - asc += 1 | |
32 | + if len(parents) != 0: | |
33 | + des += 1 | |
34 | + if len(children) != 0: | |
35 | + asc += 1 | |
23 | 36 | ``` |
24 | 37 | porque o nó `x` é (mais) um descendente se tem ascendentes (e igualmente para ascendente). |
25 | 38 | ... | ... |