From 2c94de585400ada91c906c9c694b861e1b7f93e3 Mon Sep 17 00:00:00 2001 From: raj_mathe Date: Sun, 24 Oct 2021 19:32:39 +0200 Subject: [PATCH] =?UTF-8?q?master=20>=20master:=20code=20-=20config.yml=20?= =?UTF-8?q?f=C3=BCr=20Testf=C3=A4lle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/config.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 code/config.yml diff --git a/code/config.yml b/code/config.yml new file mode 100644 index 0000000..5bf716b --- /dev/null +++ b/code/config.yml @@ -0,0 +1,29 @@ +info: + title: AlgoDat I, WiSe 2021/22 + description: Testfälle für Algorithmen. +parts: + ## Hier kann man beliebig viele Testfälle einfügen mit beliebigen Eingaben (solange gültig!) + cases: + - command: 'algorithm-sum-maxsub' + inputs: + L: [5, -6, 4, 2, -5, 7, -2, -7, 3, 5] + - command: 'algorithm-sum-maxsub-dc' + inputs: + L: [5, -6, 4, 2, -5, 7, -2, -7, 3, 5] + - command: 'algorithm-search-sequential' + inputs: + L: [1, 3, 5, 7, 11, 13, 17, 19, 23] + x: 13 + - command: 'algorithm-search-binary' + inputs: + L: [1, 3, 5, 7, 11, 13, 17, 19, 23] + x: 13 + - command: 'algorithm-search-interpolation' + inputs: + L: [1, 3, 5, 7, 11, 13, 17, 19, 23] + x: 13 + - command: 'algorithm-search-jump' + inputs: + L: [1, 3, 5, 7, 11, 13, 16, 17, 23, 33, 34, 35] + x: 17 + m: 3