Skip to content

Commit

Permalink
Propagating -niter in kmetis' rb-based initial partitioning
Browse files Browse the repository at this point in the history
  • Loading branch information
karypis committed Jul 28, 2020
1 parent 7aac07e commit 9ac4e27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GKlib
Submodule GKlib updated 5 files
+1 −7 CMakeLists.txt
+1 −0 GKlib.h
+0 −2 gk_arch.h
+0 −11 win32/adapt.c
+0 −14 win32/adapt.h
2 changes: 1 addition & 1 deletion libmetis/kmetis.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ void InitKWayPartitioning(ctrl_t *ctrl, graph_t *graph)
int status;

METIS_SetDefaultOptions(options);
options[METIS_OPTION_NITER] = 10;
options[METIS_OPTION_NITER] = ctrl->niter;
options[METIS_OPTION_OBJTYPE] = METIS_OBJTYPE_CUT;
options[METIS_OPTION_NO2HOP] = ctrl->no2hop;
options[METIS_OPTION_ONDISK] = ctrl->ondisk;
Expand Down

0 comments on commit 9ac4e27

Please sign in to comment.