home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / SIMPLEXD.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-14  |  1.0 KB  |  54 lines

  1.  
  2. # include <math.h>
  3. # include <stdio.h>
  4. # include "simplex.h"
  5. # include "miscio.h"
  6.  
  7. float constantary[12];
  8. float rh[10];
  9. float obj[10];
  10. int nr;
  11. int nc;
  12. int br[10];
  13. int i;
  14. int j;
  15. float ofv[10];
  16. float os[10];
  17.  
  18.  
  19.  
  20. void main()
  21. {
  22.    nr = 3;
  23.    nc = 4;
  24.    constantary[0] = 1.0;
  25.    constantary[1] = 1.0;
  26.    constantary[2] = 1.0;
  27.    constantary[3] = 1.0;
  28.    constantary[4] = 7.0;
  29.    constantary[5] = 5.0;
  30.    constantary[6] = 3.0;
  31.    constantary[7] = 2.0;
  32.    constantary[8] = 3.0;
  33.    constantary[9] = 5.0;
  34.    constantary[10] = 10.0;
  35.    constantary[11] = 15.0;
  36.    rh[0] = 15.0;
  37.    rh[1] = 120.0;
  38.    rh[2] = 100.0;
  39.    obj[0] = 4.0;
  40.    obj[1] = 5.0;
  41.    obj[2] = 9.0;
  42.    obj[3] = 11.0;
  43.    simplex(constantary,obj,rh,nr,nc,os,br,ofv);
  44.    printf( "Optimal solution\n");
  45.    for ( i = 0; i <= nr ; ++i ) {
  46.       printf("variable # %2d = %8.2f\n",  br[i],  os[i]);
  47.    }
  48.    printf("\n");
  49.    printf( "objective function values\n");
  50.    for ( i = 0; i <= nc + nr ; ++i ) {
  51.       printf("variable # %2d = %8.2f\n",  i, ofv[i]);
  52.    }
  53. }
  54.