Function PGAReadCmdLine

Function Documentation

void PGAReadCmdLine(PGAContext *ctx, int *argc, char **argv)

Code that looks at the arguments, recognizes any that are for PGAPack, uses the arguments, and removes them from the command line args.

Example

int main (int argc, char **argv)
{
    PGAContext *ctx;

    PGAReadCmdLine (ctx, &argc, argv);
}

Parameters
  • ctx – context variable

  • argc – address of the count of the number of command line arguments

  • argv – array of command line arguments

Returns

None