From b6780a94e594caa220fd65ff70f463247afc4d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20F=C3=A9lix?= <felixantoine67@yahoo.fr> Date: Thu, 2 Apr 2020 12:03:03 +0200 Subject: [PATCH] Modification du calcul de progression. --- psychorientation/psychorientation/eleve.cs | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/psychorientation/psychorientation/eleve.cs b/psychorientation/psychorientation/eleve.cs index 10f13c2..e2d6584 100644 --- a/psychorientation/psychorientation/eleve.cs +++ b/psychorientation/psychorientation/eleve.cs @@ -111,27 +111,16 @@ namespace psychorientation if (competence < 0) { competence = 0; } else if (competence > 10) { competence = 10; } - var diff = Math.Abs(competence - effort); - if (diff < 3.0) - { - this.effort += Math.Pow(0.5, diff + 1); - } + if (t_competence != typeEducation) + this.effort += Math.Min(Math.Max(((1 / Math.Abs(t_competence - typeEducation)) - (1.0 / 3)) * 3, -1), 1) * 0.5; else - { - if (diff >= 6) - { - this.effort -= 0.5; - } - else - { - this.effort -= 0.125 * (diff - 3); - } - } + this.effort += 0.5; if (effort < 0) { effort = 0; } else if (effort > 10) { effort = 10; } } + public void AjouterNote(string nom) { Note n = new Note(nom, CalculerNote(), this.competence, this.effort); -- GitLab