Changeset 15ff9a in git


Ignore:
Timestamp:
Aug 12, 2011, 5:44:15 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
c10515350d72537c759f372977e1d69188eed976
Parents:
6cc7f5d54a92bff33c3baf595af86929d31cd9d3
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-12 17:44:15+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:24:02+01:00
Message:
add missing header:  Singular/linearAlgebra_ip.h
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r6cc7f5 r15ff9a  
    6060#include <kernel/linearAlgebra.h>
    6161#include <Singular/misc_ip.h>
     62#include <Singular/linearAlgebra_ip.h>
    6263#ifdef HAVE_FACTORY
    6364#  include <polys/clapsing.h>
     
    8586#ifdef HAVE_PLURAL
    8687  #include <kernel/ratgring.h>
     88  #include <kernel/nc.h>
     89  #include <polys/nc/nc.h>
    8790  #include <polys/nc/sca.h>
    8891  #define ALLOW_PLURAL     1
     
    216219
    217220int iiOp; /* the current operation*/
     221
     222/*=================== simple helpers =================*/
     223poly pHeadProc(poly p)
     224{
     225  return pHead(p);
     226}
    218227
    219228/*=================== operations with 2 args.: static proc =================*/
     
    50475056static BOOLEAN jjmpTrace(leftv res, leftv v)
    50485057{
    5049   res->data = (char *)mpTrace((matrix)v->Data());
     5058  res->data = (char *)mp_Trace((matrix)v->Data(),currRing);
    50505059  return FALSE;
    50515060}
    50525061static BOOLEAN jjmpTransp(leftv res, leftv v)
    50535062{
    5054   res->data = (char *)mpTransp((matrix)v->Data());
     5063  res->data = (char *)mp_Transp((matrix)v->Data(),currRing);
    50555064  return FALSE;
    50565065}
     
    51015110#define jjsyMinBase    (proc1)syMinBase
    51025111#define jjpMaxComp     (proc1)pMaxCompProc
    5103 #define jjmpTrace      (proc1)mpTrace
    5104 #define jjmpTransp     (proc1)mpTransp
    51055112#define jjrOrdStr      (proc1)rOrdStr
    51065113#define jjrVarStr      (proc1)rVarStr
     
    53995406  BOOLEAN r=jjCOEFFS_Id(res,u,v);
    54005407  if (r) return TRUE;
    5401   mpMonomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data());
     5408  mp_Monomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data(),currRing);
    54025409  return FALSE;
    54035410}
     
    54325439  t.CleanUp();
    54335440  if (r) return TRUE;
    5434   mpMonomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data());
     5441  mp_Monomials((matrix)res->data, rank, pVar((poly)v->Data()),(matrix)w->Data(),currRing);
    54355442  return FALSE;
    54365443}
  • Singular/ipshell.h

    r6cc7f5 r15ff9a  
    212212lists scIndIndset(ideal S, BOOLEAN all, ideal Q);
    213213BOOLEAN mpKoszul(leftv res,leftv c/*ip*/, leftv b/*in*/, leftv id);
    214 
    215 #endif
    216 
     214BOOLEAN mpJacobi(leftv res,leftv a);
     215BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w);
     216BOOLEAN kQHWeight(leftv res,leftv v);
     217BOOLEAN kWeight(leftv res,leftv id);
     218BOOLEAN loSimplex( leftv res, leftv args );
     219BOOLEAN loNewtonP( leftv res, leftv arg1 );
     220
     221
     222#endif
     223
  • kernel/mod2.h

    r6cc7f5 r15ff9a  
    2828#define TIME_WITH_SYS_TIME 1
    2929#define HAVE_SYS_TIME_H 1
     30#define PROC_BUG 1
    3031/* Default value for timer resolution in ticks per second */
    3132/* set to 10 for resolution of tenth of a second, etc */
Note: See TracChangeset for help on using the changeset viewer.