diff --git a/psychorientation/psychorientation/eleve.cs b/psychorientation/psychorientation/eleve.cs index 10f13c29e5561fe818a730f43e850f9cc3a1b3ba..e2d6584f84a291ffb29d1fb758bfafcfd3de5d19 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);