Ignore:
Timestamp:
Oct 25, 2013, 8:34:39 PM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9cf75aab8ce4766fcf49c2135012db6957300a95
Parents:
6a6ae29f7bcf2272aa28c90bb17f8e9a0337de6e62de8de7d677c1aa9a6da3c0e58b04a58a9a884b
Message:
Merge pull request #408 from YueRen/spielwiese

polymake/gfanlib modules
File:
1 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/callgfanlib/bbpolytope.cc

    r6a6ae2 r32d8cb  
    3838}
    3939
    40 void *bbpolytope_Init(blackbox *b)
     40void *bbpolytope_Init(blackbox* /*b*/)
    4141{
    4242  return (void*)(new gfan::ZCone());
     
    9797}
    9898
    99 char* bbpolytope_String(blackbox *b, void *d)
     99char* bbpolytope_String(blackbox* /*b*/, void *d)
    100100{ if (d==NULL) return omStrDup("invalid object");
    101101   else
     
    107107}
    108108
    109 void bbpolytope_destroy(blackbox *b, void *d)
     109void bbpolytope_destroy(blackbox* /*b*/, void *d)
    110110{
    111111  if (d!=NULL)
     
    116116}
    117117
    118 void* bbpolytope_Copy(blackbox*b, void *d)
     118void* bbpolytope_Copy(blackbox* /*b*/, void *d)
    119119{
    120120  gfan::ZCone* zc = (gfan::ZCone*)d;
     
    358358  WerrorS("vertices: unexpected parameters");
    359359  return TRUE;
    360 }
    361 
    362 bigintmat* getFacetNormals(gfan::ZCone* zc)
    363 {
    364   gfan::ZMatrix zmat = zc->getFacets();
    365   return zMatrixToBigintmat(zmat);
    366360}
    367361
     
    482476  // iiAddCproc("","getCodimension",FALSE,getAmbientDimension);
    483477  // iiAddCproc("","getDimension",FALSE,getDimension);
    484   // iiAddCproc("","getFacetNormals",FALSE,getFacetNormals);
    485478  /********************************************************/
    486479  /* the following functions are identical to those in bbcone.cc */
     480  // iiAddCproc("","facets",FALSE,facets);
    487481  // iiAddCproc("","setLinearForms",FALSE,setLinearForms);
    488482  // iiAddCproc("","getLinearForms",FALSE,getLinearForms);
Note: See TracChangeset for help on using the changeset viewer.