From 8cb2b27bf8534d3a368ab4035525d802781d2ae0 Mon Sep 17 00:00:00 2001
From: Anton Bagliy <taccessviolation@gmail.com>
Date: Wed, 2 Oct 2019 18:45:57 +0300
Subject: [PATCH] CHG: count main task scores as 40% of total

---
 NunitReportParser/Program.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NunitReportParser/Program.cs b/NunitReportParser/Program.cs
index 85289d5..bcf0757 100644
--- a/NunitReportParser/Program.cs
+++ b/NunitReportParser/Program.cs
@@ -138,7 +138,7 @@ namespace NunitReport
                 if (g.Value > 0)
                 {
                     double grade = g.Value;
-                    grade *= 0.6;
+                    grade *= 0.4;
 
                     System.Console.Out.WriteLine("submodule #" + g.Key.ToString() + " = " + grade.ToString());
 
-- 
GitLab