[BACK]Return to cddlib.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_cdd

Diff for /OpenXM/src/ox_cdd/cddlib.c between version 1.1 and 1.2

version 1.1, 2005/05/25 04:42:20 version 1.2, 2007/09/12 07:07:36
Line 1 
Line 1 
 /*      $OpenXM$        */  /*      $OpenXM: OpenXM/src/ox_cdd/cddlib.c,v 1.1 2005/05/25 04:42:20 noro Exp $        */
   
 /*      This program is free software; you can redistribute it and/or modify  /*      This program is free software; you can redistribute it and/or modify
         it under the terms of the GNU General Public License as published by          it under the terms of the GNU General Public License as published by
Line 206  mytype *lpsolve(dd_LPObjectiveType type,int row,int co
Line 206  mytype *lpsolve(dd_LPObjectiveType type,int row,int co
 _L99:  _L99:
         if (error!=dd_NoError) dd_WriteErrorMessages(stdout, error);          if (error!=dd_NoError) dd_WriteErrorMessages(stdout, error);
         return &result;          return &result;
   }
   
   mytype *lpintpt(int row,int col,int **matrix,mytype *ptp)
   {
           dd_ErrorType error=dd_NoError;
           dd_rowset ImL, Lbasis;
           dd_LPSolutionPtr lps1;
   
           dd_MatrixPtr A;
           dd_ErrorType err;
           int i,j;
           mytype *ret;
   
           A = dd_CreateMatrix( row, col );
           for(i=0;i<row;i++){
                   for(j=0;j<col;j++){
                           dd_set_si(A->matrix[i][j],matrix[i][j]);
                   }
           }
   
           dd_FindRelativeInterior(A,&ImL,&Lbasis,&lps1,&error);
           if (error!=dd_NoError) goto _L99;
           if ( dd_Positive(lps1->optvalue) ) {
                   ret = (mytype *)MALLOC(lps1->d*sizeof(mytype));
                   for ( i = 0; i < lps1->d; i++ ) {
                           dd_init(ret[i]);
                           dd_set(ret[i],lps1->sol[i]);
                   }
           } else {
                   ret = 0;
           }
           dd_FreeLPSolution(lps1);
           set_free(ImL);
           set_free(Lbasis);
   _L99:
           if (error!=dd_NoError) dd_WriteErrorMessages(stdout, error);
           return ret;
 }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>