Skip to content

Commit f5263b1

Browse files
Remove Kahip from gui and engine.
1 parent aba0cba commit f5263b1

4 files changed

Lines changed: 45 additions & 24 deletions

File tree

src/engine/common/data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ typedef enum {
8989
SD_DBG_Dt = 1 << 8
9090
} SD_Debug;
9191

92-
typedef enum { SD_Metis, SD_HMetis, SD_Scotch, SD_Patoh, SD_Manual, SD_KaHIP } SD_PartitionMethod;
92+
typedef enum { SD_Metis, SD_HMetis, SD_Scotch, SD_Patoh, SD_Manual } SD_PartitionMethod;
9393

9494
typedef enum { SD_DT_Fixed, SD_DT_Adaptive, SD_DT_AdaptiveDiscrete } SD_DtSynch;
9595

src/engine/common/settings.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,8 @@ SD_PartitionMethod _getPartitionMethod(const char *sol)
9292
return SD_Patoh;
9393
} else if (!strcmp(sol, "Manual")) {
9494
return SD_Manual;
95-
} else if (!strcmp(sol, "KaHIP")) {
96-
return SD_KaHIP;
9795
}
98-
return SD_Scotch;
96+
return SD_Manual;
9997
}
10098

10199
SD_DtSynch _getDtSynch(const char *sol)

src/gui/mmohighlight.cpp

Lines changed: 43 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -115,21 +115,49 @@ const QStringList MmoHighlighter::_model_functions = {"abs", "acos", "asin
115115

116116
const QStringList MmoHighlighter::_model_annotations = {"annotation", "experiment"};
117117

118-
const QStringList MmoHighlighter::_model_qss_tags = {"CI_Dense", "CI_Sampled", "CI_Step",
119-
"CHEQSS1", "CHEQSS2", "CHEQSS3",
120-
"EQSS1", "EQSS2", "EQSS3",
121-
"CQSS1", "CQSS2",
122-
"CQSS3", "CVODE_AM", "CVODE_BDF",
123-
"DASSL", "Dense", "DOPRI",
124-
"false", "HMetis", "IDA",
125-
"KaHIP", "LIQSS", "LIQSS2",
126-
"LIQSS3", "LIQSS_BDF", "Manual",
127-
"Metis", "mLIQSS", "mLIQSS2",
128-
"MTPL", "MTPL_IT", "Patoh",
129-
"QSS1", "QSS2", "QSS3",
130-
"QSS4", "Scotch", "SD_DT_Asynchronous",
131-
"SD_DT_Fixed", "Sparse", "ST_Binary",
132-
"ST_Linear", "ST_Random", "true"};
118+
const QStringList MmoHighlighter::_model_qss_tags = {"CI_Dense",
119+
"CI_Sampled",
120+
"CI_Step",
121+
"CHEQSS1",
122+
"CHEQSS2",
123+
"CHEQSS3",
124+
"EQSS1",
125+
"EQSS2",
126+
"EQSS3",
127+
"CQSS1",
128+
"CQSS2",
129+
"CQSS3",
130+
"CVODE_AM",
131+
"CVODE_BDF",
132+
"DASSL",
133+
"Dense",
134+
"DOPRI",
135+
"false",
136+
"HMetis",
137+
"IDA",
138+
"LIQSS",
139+
"LIQSS2",
140+
"LIQSS3",
141+
"LIQSS_BDF",
142+
"Manual",
143+
"Metis",
144+
"mLIQSS",
145+
"mLIQSS2",
146+
"MTPL",
147+
"MTPL_IT",
148+
"Patoh",
149+
"QSS1",
150+
"QSS2",
151+
"QSS3",
152+
"QSS4",
153+
"Scotch",
154+
"SD_DT_Asynchronous",
155+
"SD_DT_Fixed",
156+
"Sparse",
157+
"ST_Binary",
158+
"ST_Linear",
159+
"ST_Random",
160+
"true"};
133161

134162
const QStringList MmoHighlighter::_log_keywords = {"-", "Additional", "Allocated", "allocated", "Average",
135163
"Begin", "by", "changes", "cost", "CPU",

src/gui/ui/run.ui

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -609,11 +609,6 @@
609609
<string>PATOH</string>
610610
</property>
611611
</item>
612-
<item>
613-
<property name="text">
614-
<string>KAHIP</string>
615-
</property>
616-
</item>
617612
<item>
618613
<property name="text">
619614
<string>MANUAL</string>

0 commit comments

Comments
 (0)