Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TestComLine Class Reference

ComLineObject for testing app. More...

Inheritance diagram for TestComLine:
Collaboration diagram for TestComLine:

Public Member Functions

 TestComLine ()
 
 TestComLine (const char *args[])
 
void Initialize ()
 

Detailed Description

ComLineObject for testing app.

Definition at line 12 of file Test.C.

Constructor & Destructor Documentation

TestComLine ( )
inline

Definition at line 15 of file Test.C.

16  : ComLineObject()
17  {};
TestComLine ( const char *  args[])
inline

Definition at line 18 of file Test.C.

19  : ComLineObject(args)
20  {};

Member Function Documentation

void Initialize ( )
inline

Definition at line 21 of file Test.C.

21  {
22  AddOption('h',"help");
23  AddOption('p',"partition",2,"number");
24  AddOption('v',"verb",1,"level");
25  AddOption('c',"clone",2,"number");
26  AddOption('a',"assembly");
27  AddOption('m',"mesh");
28  AddOption('d',"debug");
29  AddOption('k',"checking");
30  AddOption('r',"reorient");
31  AddOption('g',"generate");
32  AddOption('s',"sparse");
33  AddOption('t',"metis");
34  AddOption('n',"renumber");
35  AddArgument("input",1);
36  AddHelp("metis","Metis testing stub.");
37  AddHelp("sparse","Write out the sparse matrix for visualization.");
38  AddHelp("clone","Generate <number> of partitions identical to the input mesh.");
39  AddHelp("generate","Generate a uniform mesh with N nodes and quit.");
40  AddHelp("checking","Paranoid and insanely verbose dumping of all important arrays to Log.");
41  AddHelp("partition","Performs Metis partitioning of input mesh into <number> partitions.");
42  AddHelp("assembly","Performs assembly test.");
43  AddHelp("mesh","Performs mesh tests.");
44  AddHelp("help","Prints this long version of help.");
45  AddHelp("verb","Makes the test more verbose. Default level is 1.");
46  AddHelp("config","Specifies the name of the configuration file.");
47  AddHelp("out","Specifies the name of the output file.");
48  AddHelp("renumber","Uses ParMETIS to do optimal graph reordering.");
49  AddArgHelp("input","Mode dependent arguments");
50  std::ostringstream Ostr;
51  // Ostr << "Use fixed problem size in scalability analysis. Only makes"
52  // << "\n\t\tsense when scalability mode is enabled.";
53  // Ostr.str("");
54  Ostr << "Test tool for exercising the mesh library.";
55  _description.assign(Ostr.str());
56  };

The documentation for this class was generated from the following file: