Changeset 68eb0c in git for kernel/gfan.h


Ignore:
Timestamp:
Mar 6, 2010, 6:09:52 PM (14 years ago)
Author:
Martin Monerjan
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
5151ac95d6e9778dc832b31c28c9649d358d1b0c
Parents:
51346c4ca4b934458da6e3ad84176f094bfd5caa
Message:
getExtremalRays now stores the rays in intvec** gcone::gcRays, the
facets only point their fNormals below codim2Ptr there.
gcone::numRays
Cleanup of no longer used stuff: dotProduct, interiorPoint2


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

Legend:

Unmodified
Added
Removed
  • kernel/gfan.h

    r51346c4 r68eb0c  
    7575                facet *codim2Ptr;       //Pointer to (codim-2)-facet. Bit of recursion here ;-)
    7676                int numCodim2Facets;    //#of (codim-2)-facets of this facet. Set in getCodim2Normals()
    77                 unsigned numRays;       //Number of spanning rays of the cone
     77                unsigned numRays;       //Number of spanning rays of the facet
    7878                ring flipRing;          //the ring on the other side of the facet
    7979                                       
     
    8484                /**  The copy constructor */
    8585                facet(const facet& f);
     86                /** A shallow copy of facets*/
    8687                facet* shallowCopy(const facet& f);
    8788                void shallowDelete();
     
    9495                /** Stores the facet normal \param intvec*/
    9596                inline void setFacetNormal(intvec *iv);
    96                 /** Hopefully returns the facet normal */
     97                /** Returns the facet normal */
    9798                inline intvec *getFacetNormal();
    9899                /** Return a reference to the facet normal*/
     
    189190                dd_MatrixPtr ddFacets;  //Matrix to store irredundant facets of the cone
    190191               
     192                /** Array of intvecs representing the rays of the cone*/
     193                intvec **gcRays;
     194                unsigned numRays;       //#rays of the cone
    191195                /** Contains the Groebner basis of the cone. Is set by gcone::getGB(ideal I)*/
    192196                ideal gcBasis;          //GB of the cone, set by gcone::getGB();
Note: See TracChangeset for help on using the changeset viewer.