Skip to content
Snippets Groups Projects
Commit 543669d8 authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

arand: help

parent 5e011ec7
No related branches found
No related tags found
No related merge requests found
......@@ -20,15 +20,12 @@ using namespace std;
 
void help( void )
{
cout << endl;
cout << "arand 0.01" << endl;
cout << "Generates random automata." << endl;
cout << "Usage: arand -n -d -a" << endl << endl;
cout << " -n, --nodes=NODES \t Number of nodes of automata." << endl;
cout << " -d, --density=DENSITY \t Percentage of transitions to generate. 1.0 = automata graph is tree, 100.0 = every possible transition." << endl;
cout << " -a, --alphabet=ALPHABET \t If numerical, generates random alphabet of given size, else comma separated list of alphabet symbols." << endl;
cout << endl;
cout << "arand" << endl;
cout << "Generates random automaton." << endl;
cout << "Usage: arand -n=N -d=D -a=A" << endl << endl;
cout << " -n, --nodes=N \t Number of nodes of automata." << endl;
cout << " -d, --density=D \t Percentage of transitions to generate. 1.0 = automata graph is tree, 100.0 = every possible transition." << endl;
cout << " -a, --alphabet=A \t Alphabet size." << endl;
}
 
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment