home *** CD-ROM | disk | FTP | other *** search
-
- # include <math.h>
- # include <stdio.h>
- # include "simplex.h"
- # include "miscio.h"
-
- float constantary[12];
- float rh[10];
- float obj[10];
- int nr;
- int nc;
- int br[10];
- int i;
- int j;
- float ofv[10];
- float os[10];
-
-
-
- void main()
- {
- nr = 3;
- nc = 4;
- constantary[0] = 1.0;
- constantary[1] = 1.0;
- constantary[2] = 1.0;
- constantary[3] = 1.0;
- constantary[4] = 7.0;
- constantary[5] = 5.0;
- constantary[6] = 3.0;
- constantary[7] = 2.0;
- constantary[8] = 3.0;
- constantary[9] = 5.0;
- constantary[10] = 10.0;
- constantary[11] = 15.0;
- rh[0] = 15.0;
- rh[1] = 120.0;
- rh[2] = 100.0;
- obj[0] = 4.0;
- obj[1] = 5.0;
- obj[2] = 9.0;
- obj[3] = 11.0;
- simplex(constantary,obj,rh,nr,nc,os,br,ofv);
- printf( "Optimal solution\n");
- for ( i = 0; i <= nr ; ++i ) {
- printf("variable # %2d = %8.2f\n", br[i], os[i]);
- }
- printf("\n");
- printf( "objective function values\n");
- for ( i = 0; i <= nc + nr ; ++i ) {
- printf("variable # %2d = %8.2f\n", i, ofv[i]);
- }
- }
-