Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set default values for ROM config options. #235

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/read_config.cc
Original file line number Diff line number Diff line change
Expand Up @@ -421,13 +421,13 @@ void setupROMConfigOption(po::options_description &rom_cfg)
rom_cfg.add_options()
("ROM.stage", po::value<std::string>()->default_value("none"),
"ROM workflow stage: offline; build; online; none.")
("ROM.offline.restart_filefmt", po::value<std::string>(),
("ROM.offline.restart_filefmt", po::value<std::string>()->default_value(""),
"File name format to read for snapshots.")
("ROM.offline.restart_min_idx", po::value<int>(),
("ROM.offline.restart_min_idx", po::value<int>()->default_value(-1),
"Minimum index for snapshot file format.")
("ROM.offline.restart_max_idx", po::value<int>(),
("ROM.offline.restart_max_idx", po::value<int>()->default_value(-1),
"Maximum index for snapshot file format.")
("ROM.offline.basis_file", po::value<std::string>(),
("ROM.offline.basis_file", po::value<std::string>()->default_value(""),
"File name for libROM snapshot/POD matrices.")
("ROM.offline.save_librom_snapshot", po::value<bool>()->default_value(false),
"Save libROM snapshot file at FOM simulation.");
Expand Down
Loading