This repository has been archived on 2018-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
arma-flow/src/args.hpp

30 lines
469 B
C++
Raw Normal View History

2018-04-05 11:01:10 +00:00
#pragma once
#include <options.h>
namespace flow
{
class args
{
options::ArgParser arg_parser_;
public:
explicit args();
void parse(int argc, char** argv);
bool input_file_path(std::string& nodes, std::string& edges);
bool output_file_path(std::string& output);
bool remove_first_line();
int max_iterations();
double accuracy();
bool verbose();
void help();
};
}