Skip to content

Commit

Permalink
Remove rsb_dump_stats member variable
Browse files Browse the repository at this point in the history
  • Loading branch information
thilinarmtb committed Apr 30, 2024
1 parent fdd4d07 commit cbe0f06
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/parRSB.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ typedef struct {
int rsb_max_iter; // Max iterations in Lanczos / MG (Default: 50)
int rsb_max_passes; // Max Lanczos restarts / Inverse iterations (Default: 50)
double rsb_tol; // Tolerance for Lanczos or RQI (Default: 1e-5)
int rsb_dump_stats; // Dump partition statistics to a text file.
// RSB MG specific options
int rsb_mg_grammian; // MG Grammian: 0 or 1 (Default: 0)
int rsb_mg_factor; // MG Coarsening factor (Default: 2, should be > 1)
Expand Down
1 change: 0 additions & 1 deletion src/parrsb.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ parrsb_options parrsb_default_options = {
.rsb_max_iter = 50,
.rsb_max_passes = 50,
.rsb_tol = 1e-5,
.rsb_dump_stats = 0,
// RSB MG specific options
.rsb_mg_grammian = 0,
.rsb_mg_factor = 2};
Expand Down

0 comments on commit cbe0f06

Please sign in to comment.