Changeset 8ac2f9 in git


Ignore:
Timestamp:
Sep 6, 2017, 5:36:00 PM (7 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
2b968fa27bc9c56858aeeaf4cca475d621c80fc3
Parents:
4fa388da96dbef21f2c68b06a33d945f03562830
git-author:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2017-09-06 17:36:00+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2017-12-15 12:17:07+01:00
Message:
chg: only include LTs of first module for fres(, , "frame")
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/syz4.cc

    r4fa388 r8ac2f9  
    544544}
    545545
     546static void remove_tails(resolvente res)
     547{
     548    const ring r = currRing;
     549    for (int i = 0; i < res[0]->ncols; i++) {
     550        if (res[0]->m[i]->next != NULL) {
     551            p_Delete(&(res[0]->m[i]->next), r);
     552        }
     553    }
     554}
     555
    546556syStrategy syFrank(const ideal arg, const int length, const char *method)
    547557{
     
    559569    if (strcmp(method, "frame") != 0) {
    560570        insert_ext_induced_LTs(res, new_length);
     571    } else {
     572        remove_tails(res);
    561573    }
    562574    result->fullres = res;
Note: See TracChangeset for help on using the changeset viewer.