Skip to content

Commit 348e208

Browse files
committed
Adjusted some weights for the colleges and student evaluation.
1 parent 3602f5b commit 348e208

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ def generate_report(self,) :
855855
career_path = self.career_dd.get()
856856
assert (career_path != "-")
857857

858-
self.student_score = self.sat_score/50 + self.gpa*5
858+
self.student_score = self.sat_score/50 + self.gpa*4.5
859859

860860
## Very dumb but it works so :shrug:
861861
tempTotal = 0
@@ -871,7 +871,7 @@ def generate_report(self,) :
871871
for i in self.awarded_awards :
872872
tempTotal += i.awardValue
873873

874-
self.student_score += tempTotal
874+
self.student_score += tempTotal/1.5
875875

876876
print(self.student_score)
877877

@@ -951,7 +951,7 @@ def generate_report(self,) :
951951
self.all_screen_obj.append(layer)
952952

953953
except :
954-
messagebox.showerror("Invalid Career Path", "Invalid Career Path!")
954+
messagebox.showerror("Invalid Career Field", "Invalid Career Field!")
955955
self.intro_11th_slide()
956956

957957
def chat_with_ai(self,) :

universities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ def __init__(self, name, acc_rate, tier, sat75, sat50, sat25, tags) :
99
self.sat25 = sat25
1010
self.tags = tags
1111

12-
self.universityDifficulty = (1-self.acc_rate)*10*tier+sat50/40
12+
self.universityDifficulty = (1-self.acc_rate)*10 + tier*40 +sat50/40 + 10 ## Technically acc_rate is reject rate

0 commit comments

Comments
 (0)