Changeset 7ec0614 in git for Singular/ipassign.cc


Ignore:
Timestamp:
Oct 26, 2010, 12:06:40 PM (14 years ago)
Author:
Frank Seelisch <seelisch@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a53ae5000c439608b9dcf884b63d62b219e8fcc0
Parents:
f7449ff74c2f2331426674adbf6689f8bb8c3e8c
Message:
took out type 'fan'; now only type 'cone' is there when built with HAVE_FANS defined (by default, HAVE_FANS is undefined)


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

Legend:

Unmodified
Added
Removed
  • Singular/ipassign.cc

    rf7449f r7ec0614  
    4040#include <Singular/ipshell.h>
    4141#include <kernel/sca.h>
    42 #include <Singular/Fan.h>
    4342#include <gfanlib/gfanlib.h>
    4443
     
    322321}
    323322#ifdef HAVE_FANS
     323/*
    324324static BOOLEAN jiA_FAN(leftv res, leftv a, Subexpr e)
    325325{
     
    338338  res->data=(void*)fff;
    339339  return FALSE;
    340 }
     340}*/
    341341static BOOLEAN jiA_CONE(leftv res, leftv a, Subexpr e)
    342342{
     
    13361336}
    13371337#ifdef HAVE_FANS
     1338/*
    13381339BOOLEAN jjAssignFan(leftv l, leftv r)
    1339 {
     1340{*/
    13401341  /* method for generating a fan;
    13411342     valid parametrizations: (intmat or 0, intmat or 0, intmat or 0),
     
    13491350     - numbers of rows in 1st, 2nd, and/or 3rd argument intmat
    13501351       disagree */
    1351   intvec* maxRays = NULL;    /* maximal rays */
    1352   intvec* facetNs = NULL;    /* facet normals */
    1353   intvec* linSpace = NULL;   /* lineality space */
    1354 
     1352//  intvec* maxRays = NULL;    /* maximal rays */
     1353//  intvec* facetNs = NULL;    /* facet normals */
     1354//  intvec* linSpace = NULL;   /* lineality space */
     1355/*
    13551356  leftv x = r;
    13561357  if (x->Typ() == INTMAT_CMD) maxRays = (intvec*)x->Data();
     
    14031404  IDDATA((idhdl)l->data) = (char*)fff;
    14041405  return FALSE;
    1405 }
     1406}*/
    14061407BOOLEAN jjAssignCone(leftv l, leftv r)
    14071408{
     
    15561557    }
    15571558#ifdef HAVE_FANS
     1559/*
    15581560    else if ((lt == FAN_CMD) && (rl == 3))
    15591561    {
    15601562      return jjAssignFan(l, r);
    1561     }
     1563    }*/
    15621564#endif /* HAVE_FANS */
    15631565    if (rt==NONE) rt=r->Typ();
Note: See TracChangeset for help on using the changeset viewer.