Skip to content

Commit

Permalink
Remove unused parameter from solve_mm
Browse files Browse the repository at this point in the history
  • Loading branch information
ddemidov committed Sep 30, 2014
1 parent 56abee4 commit ad7a187
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions examples/solve_mm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ int main(int argc, char *argv[]) {
using amgcl::prof;

// Read configuration from command line
int m = 32;
amgcl::runtime::coarsening::type coarsening = amgcl::runtime::coarsening::smoothed_aggregation;
amgcl::runtime::relaxation::type relaxation = amgcl::runtime::relaxation::spai0;
amgcl::runtime::solver::type solver = amgcl::runtime::solver::bicgstab;
Expand All @@ -45,11 +44,6 @@ int main(int argc, char *argv[]) {

desc.add_options()
("help,h", "show help")
(
"size,n",
po::value<int>(&m)->default_value(m),
"domain size"
)
(
"coarsening,c",
po::value<amgcl::runtime::coarsening::type>(&coarsening)->default_value(coarsening),
Expand Down

0 comments on commit ad7a187

Please sign in to comment.