Skip to content

Commit

Permalink
refactor(parser): remove optimization para
Browse files Browse the repository at this point in the history
  • Loading branch information
HarukiMoriarty committed Aug 8, 2024
1 parent 531e39e commit d407b68
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions calmapf/include/parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ struct Parser {
// Logger
std::shared_ptr<spdlog::logger> parser_console;

// Optimize
bool optimization;

Parser(int argc, char* argv[]);
void _post_parse();
void _check();
Expand Down
3 changes: 0 additions & 3 deletions calmapf/src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ Parser::Parser(int argc, char* argv[]) {
short_log_format = program.get<bool>("short-log-format");
debug_log = program.get<bool>("debug-log");

optimization = program.get<bool>("optimize");

// Post parse
_post_parse();

Expand Down Expand Up @@ -158,7 +156,6 @@ void Parser::_print() {
parser_console->info("Visual file: {}", output_visual_file);
parser_console->info("Log short: {}", short_log_format);
parser_console->info("Debug: {}", debug_log);
parser_console->info("Optimization: {}", optimization);
}

// Unit test only
Expand Down

0 comments on commit d407b68

Please sign in to comment.