File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,6 @@ def extract_intro(self) -> str:
3737 def extract_conclusion (self ) -> str :
3838 return self .extract_section ("Заключение" )
3939
40- def extract_methodology (self ) -> str :
41- return self .extract_section ("Методолог" )
42-
4340 # ---------------------------------------------------------
4441 # --- 2. ЭВРИСТИКА: Поиск ключевых концепций ---
4542 # ---------------------------------------------------------
@@ -79,7 +76,6 @@ def heuristic_questions(self) -> List[str]:
7976 """
8077 intro = self .extract_intro ()
8178 conc = self .extract_conclusion ()
82- meth = self .extract_methodology ()
8379 keywords = self .extract_keywords (self .vkr_text )
8480
8581 q = []
@@ -88,11 +84,6 @@ def heuristic_questions(self) -> List[str]:
8884 if intro and conc :
8985 q .append ("Как сформулированные во введении задачи связаны с выводами работы?" )
9086
91- # --- По методологии ---
92- if meth :
93- for kw in keywords [:3 ]:
94- q .append (f"Почему был выбран метод { kw } и где он применён в работе?" )
95-
9687 # --- По выводам ---
9788 if conc :
9889 q .append ("На основании каких данных был сделан ключевой вывод в заключении?" )
You can’t perform that action at this time.
0 commit comments