Add a default parameter so that the test does something

This commit is contained in:
Andreas Fabri 2022-11-09 11:25:27 +00:00
parent 01f8f1bc1d
commit 91ab7000b0
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ int main(int argc, char** argv)
options.add_options()
("help,h", "Display help message")
("polyhedron,p", po::value<std::string>(), "Polyhedron input file")
("polyhedron,p", po::value<std::string>()->default_value("./data/test_mesh_6.off"), "Polyhedron input file")
("debugmode,d", po::value<bool>()->default_value(false), "Enable debug output")
("randomseed,r", po::value<unsigned int>(), "Randomization seed value")
("trials,t", po::value<size_t>()->default_value(1), "Number of trials to run")