# TOMLAB  
# REGISTER (TOMLAB)
# LOGIN  
# myTOMLAB
TOMLAB LOGO

« Previous « Start » Next »

6  GENO Test Set

There are 21 example problems supplied by the authors of GENO included with the TOMLAB distribution. The problems are assembled in 7 separate files (geno_prob, geno_f, geno_g, geno_H, geno_c, geno_dc and geno_d2c). GENO itself will only utilize the information in _f and _c, but first and in some cases second order derivatives are supplied to enable smooth execution of other solver.

To create and run one of these problem the following code may be executed:

 probNumber = 1;         % Any number from 1 to 21.

 Prob = probInit('geno_prob', probNumber);

 Result = tomRun('GENO', Prob, 1);

Of course the algorithm may also be tested using any of the example problems in the general TOMLAB test suite.

« Previous « Start » Next »