Go to the source code of this file.
Functions | |
void | justifyText (const string &text, int pageWidth, int indent) |
vector< string > | getValues (string option, vector< string > args) |
string | getFileExtension (string filename) |
vector< string > | replaceLongWithShortNames (vector< string > args) |
vector< string > | getUsedOptionsFromArg (const vector< string > &allArgs) |
void | printv (const char *fstr,...) |
void | showHelp (void) |
void | checkNumberOfRequiredArguments (string option, vector< string > optionValues) |
bool | hasOnlyDigits (const string s) |
vector< string > | getAllArgs (int argc, char **argv) |
int | str2int (string number) |
void | call_getInDeg (const vector< string > &allArgs, Graph *currentGraph) |
void | call_getNumberOfNodes (const vector< string > &allArgs, Graph *currentGraph) |
void | call_getNumberOfEdges (const vector< string > &allArgs, Graph *currentGraph) |
void | call_hasCycle (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isComplete (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isForest (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isDirected (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isFreeOfLoops (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isMultigraph (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isRegular (const vector< string > &allArgs, Graph *currentGraph) |
void | call_isSimple (const vector< string > &allArgs, Graph *currentGraph) |
void | call_getOutDeg (const vector< string > &allArgs, Graph *currentGraph) |
void | call_areNeighbours (const vector< string > &allArgs, Graph *currentGraph) |
void | call_hasConnectivity (const vector< string > &allArgs, Graph *currentGraph) |
void | call_hasEdge (const vector< string > &allArgs, Graph *currentGraph) |
void | call_hasPath (const vector< string > &allArgs, Graph *currentGraph) |
void call_areNeighbours | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_getInDeg | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_getNumberOfEdges | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_getNumberOfNodes | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_getOutDeg | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_hasConnectivity | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_hasCycle | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_hasEdge | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_hasPath | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isComplete | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isDirected | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isForest | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isFreeOfLoops | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isMultigraph | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isRegular | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void call_isSimple | ( | const vector< string > & | allArgs, |
Graph * | currentGraph | ||
) |
void checkNumberOfRequiredArguments | ( | string | option, |
vector< string > | optionValues | ||
) |
checks whether there are enough arguments for a certain option.
option | the option |
optionValues | its values |
vector<string> getAllArgs | ( | int | argc, |
char ** | argv | ||
) |
converts the program arguments to one arry
argc | argument count |
argv | arguments |
string getFileExtension | ( | string | filename | ) |
Returns the extension of a filename.
filename | the filename |
vector<string> getUsedOptionsFromArg | ( | const vector< string > & | allArgs | ) |
Extracts als used options in arguments.
allArgs | all program arguments |
vector<string> getValues | ( | string | option, |
vector< string > | args | ||
) |
Extracts all values corresponding to a given option.
e.g. we have a command line like "-a foo1 foo2 foo3 -b ffoo" and call getOptionValues("a", "-a foo1 foo2 foo3 -b ffoo") ==> returns an array with {"foo1", "foo2", "foo3"}
checks only short names of options!
option | an option |
args | all arguments (from main **argv) |
bool hasOnlyDigits | ( | const string | s | ) |
checks whether a string contains only digits
s | the string |
void justifyText | ( | const string & | text, |
int | pageWidth, | ||
int | indent | ||
) |
justifies the given text.
text | the text |
pageWidth | the page width |
indent | the indention |
void printv | ( | const char * | fstr, |
... | |||
) |
Printf wrapper for verbose mode. Prints a formatted string and the corresponding number of values.
str | formatted string |
vector<string> replaceLongWithShortNames | ( | vector< string > | args | ) |
Replace all long name options with their corresponding short name
args | array with arguments |
void showHelp | ( | void | ) |
prints out the help page.
int str2int | ( | string | number | ) |
Converts a string to a int
number | string with a number ([0-9]*) |