34 lines
650 B
YAML
34 lines
650 B
YAML
## Beispiel für Seminarwoche 9 (Blatt 8)
|
|
- name: TSP
|
|
dist:
|
|
- [0, 7, 4, 3]
|
|
- [7, 0, 5, 6]
|
|
- [2, 5, 0, 5]
|
|
- [2, 7, 4, 0]
|
|
optimise: MIN
|
|
verbose: true
|
|
## Beispiele für Seminarwoche 10 (Blatt 9)
|
|
- &command_hirshberg
|
|
name: HIRSCHBERG
|
|
once: true
|
|
verbose:
|
|
- COSTS
|
|
- MOVES
|
|
# show:
|
|
# # - ATOMS
|
|
# - TREE
|
|
word1: 'happily ever after'
|
|
word2: 'apples'
|
|
- <<: *command_hirshberg
|
|
word1: 'ANSTRENGEN'
|
|
word2: 'ANSPANNEN'
|
|
- <<: *command_hirshberg
|
|
word1: 'ACGAAG'
|
|
word2: 'AGAT'
|
|
- <<: *command_hirshberg
|
|
word1: 'happily ever, lol'
|
|
word2: 'apple'
|
|
- <<: *command_hirshberg
|
|
word1: 'happily'
|
|
word2: 'applses'
|