debian man page for pgasetrealinitrange

Query: pgasetrealinitrange

OS: debian

Section: 2

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

PGASetRealInitRange(2)						      PGAPack						    PGASetRealInitRange(2)

NAME
PGASetRealInitRange - sets the upper and lower bounds for randomly initializing real-valued genes.
DESCRIPTION
For each gene these bounds define an interval from which the initial allele value is selected uniformly randomly. The user specifies two arrays containing lower and bound for each gene to define the interval. This is the default strategy for initializing real-valued strings. The default interval is $[0,1.0]$ for each gene.
INPUT PARAMETERS
ctx - context variable min - array containing the lower bound of the interval for each gene mac - array containing the upper bound of the interval for each gene
OUTPUT PARAMETERS
none
SYNOPSIS
#include "pgapack.h" void PGASetRealInitRange(ctx, min, max) PGAContext *ctx double *min double *max
LOCATION
real.c
EXAMPLE
Set the initialization routines to select a value for each real-valued gene i uniformly randomly from the interval [-10.,i] Assumes all strings are of the same length. PGAContext *ctx; double *low, *high; int i, stringlen; : stringlen = PGAGetStringLength(ctx); low = (double *) malloc(stringlen*sizeof(double)); high = (double *) malloc(stringlen*sizeof(double)); for(i=0;i<stringlen;i++) { low[i] = -10.0; high[i] = i; } PGASetRealInitRange(ctx, low, high); 05/01/95 PGASetRealInitRange(2)
Related Man Pages
pgasetrealinitpercent(2) - debian
pgasetrealinitrange(2) - debian
pgadebugprint(3) - debian
drand48_r(3c) - hpux
ace::sequence::gene(3pm) - debian
Similar Topics in the Unix Linux Community
array bounds and mem leak tool
Counting entries in a file
Print @array content to a file
Request to check: compare two files , match same entries, write data before it
How to delete strings in a file?