Changeset 10dd14 in git


Ignore:
Timestamp:
Sep 19, 2010, 3:53:38 PM (13 years ago)
Author:
Martin Monerjan
Branches:
(u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
Children:
73f78da968d3bf51d9cad24fb4ecf386e3c13276
Parents:
a469c13d4d5222c065b5812526913d5f21b7df2f
Message:
Ternary ?: in getExtremalRays for ddineq


git-svn-id: file:///usr/local/Singular/svn/trunk@13219 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/gfan.cc

    ra469c13 r10dd14  
    14001400        dd_MatrixPtr ddineq;
    14011401        dd_ErrorType err;       
    1402         if(dd_LinealitySpace->rowsize>0)//The linspace might be 0
    1403                 ddineq = dd_AppendMatrix(gc.ddFacets,gcone::dd_LinealitySpace);
    1404         else
    1405                 ddineq = dd_CopyMatrix(gc.ddFacets);
     1402//      if(dd_LinealitySpace->rowsize>0)//The linspace might be 0
     1403//              ddineq = dd_AppendMatrix(gc.ddFacets,gcone::dd_LinealitySpace);
     1404//      else
     1405//              ddineq = dd_CopyMatrix(gc.ddFacets);
     1406        ddineq = (dd_LinealitySpace->rowsize>0) ? dd_AppendMatrix(gc.ddFacets,gcone::dd_LinealitySpace) : dd_CopyMatrix(gc.ddFacets);
    14061407        /* In case the input is non-homogeneous we add constrains for the positive orthant.
    14071408        * This is justified by the fact that for non-homog ideals we only consider the
Note: See TracChangeset for help on using the changeset viewer.