From 406f798971dc38628d876e6371219e7510c5ba4c Mon Sep 17 00:00:00 2001 From: Luis Rodrigues Date: Fri, 13 Sep 2024 01:22:20 +0100 Subject: [PATCH] =?UTF-8?q?adicionados=20ficheiros=20JSON=20de=20estrat?= =?UTF-8?q?=C3=A9gias?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- strategies/lunatico.json | 9 +++++++++ strategies/neutro.json | 9 +++++++++ strategies/tit4tat.json | 9 +++++++++ strategies/vingativo.json | 9 +++++++++ 4 files changed, 36 insertions(+) create mode 100644 strategies/lunatico.json create mode 100644 strategies/neutro.json create mode 100644 strategies/tit4tat.json create mode 100644 strategies/vingativo.json diff --git a/strategies/lunatico.json b/strategies/lunatico.json new file mode 100644 index 0000000..a1242d3 --- /dev/null +++ b/strategies/lunatico.json @@ -0,0 +1,9 @@ +{ + "Lunatico": { + "amabilidade": 0.5, + "retaliacao": 0.5, + "perdao": 0.5, + "coerencia": 0.5, + "memoria": 0.5, + }, +} diff --git a/strategies/neutro.json b/strategies/neutro.json new file mode 100644 index 0000000..0fdd51d --- /dev/null +++ b/strategies/neutro.json @@ -0,0 +1,9 @@ +{ + "Neutro": { + "amabilidade": 0.5, + "retaliacao": 0.5, + "perdao": 0.5, + "coerencia": 1.0, + "memoria": 0.5, + }, +} diff --git a/strategies/tit4tat.json b/strategies/tit4tat.json new file mode 100644 index 0000000..aea4315 --- /dev/null +++ b/strategies/tit4tat.json @@ -0,0 +1,9 @@ +{ + "Tit4Tat": { + "amabilidade": 1.0, + "retaliacao": 1.0, + "perdao": 1.0, + "coerencia": 1.0, + "memoria": 0.5, + }, +} diff --git a/strategies/vingativo.json b/strategies/vingativo.json new file mode 100644 index 0000000..2c9a117 --- /dev/null +++ b/strategies/vingativo.json @@ -0,0 +1,9 @@ +{ + "Vingativo": { + "amabilidade": 0.0, + "retaliacao": 1.0, + "perdao": 0.0, + "coerencia": 1.0, + "memoria": 0.5, + }, +}