Changeset 96be87 in git for kernel


Ignore:
Timestamp:
Mar 20, 2017, 2:53:36 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
93931807da3e2c80146286e228e06071641c0ddd
Parents:
1daa86b5eb2a34295e7669c94a86106d1a912432
Message:
rAssure_TDeg
Location:
kernel/GBEngine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/tgb.cc

    r1daa86b r96be87  
    35563556}
    35573557
    3558 ideal t_rep_gb (ring r, ideal arg_I, int syz_comp, BOOLEAN F4_mode)
     3558ideal t_rep_gb (const ring r, ideal arg_I, int syz_comp, BOOLEAN F4_mode)
    35593559{
    35603560  assume (r == currRing);
    35613561  ring orig_ring = r;
    35623562  int pos;
    3563   ring new_ring = rAssure_TDeg (orig_ring, 1, rVar (orig_ring), pos);
     3563  ring new_ring = rAssure_TDeg (orig_ring, pos);
    35643564  ideal s_h;
    35653565  if(orig_ring != new_ring)
     
    35673567    rChangeCurrRing (new_ring);
    35683568    s_h = idrCopyR_NoSort (arg_I, orig_ring, new_ring);
    3569     idTest (s_h);
    35703569    /*int i;
    35713570       for(i=0;i<IDELEMS(s_h);i++)
     
    35833582    s_h = id_Copy (arg_I, orig_ring);
    35843583  }
     3584  idTest (s_h);
    35853585
    35863586  ideal s_result = do_t_rep_gb (new_ring, s_h, syz_comp, F4_mode, pos);
  • kernel/GBEngine/tgb.h

    r1daa86b r96be87  
    1818
    1919
    20 ideal t_rep_gb(ring r,ideal arg_I, int syz_comp, BOOLEAN F4_mode=FALSE);
     20ideal t_rep_gb(const ring r,ideal arg_I, int syz_comp, BOOLEAN F4_mode=FALSE);
    2121#endif
Note: See TracChangeset for help on using the changeset viewer.