source: git/kernel/polys.cc @ ae133b

spielwiese
Last change on this file since ae133b was ae133b, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: rChangeCurrRing should set currQuotient as well
  • Property mode set to 100644
File size: 227 bytes
Line 
1#include "mod2.h"
2
3#include <omalloc/omalloc.h>
4#include <misc/auxiliary.h>
5
6#include "polys.h"
7
8ring  currRing = NULL;
9ideal currQuotient = NULL;
10
11void rChangeCurrRing(ring r)
12{
13   currRing = r;
14   currQuotient = r->qideal;
15}
Note: See TracBrowser for help on using the repository browser.