File: saturation.h

package info (click to toggle)
gfan 0.5%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,348 kB
  • ctags: 5,683
  • sloc: cpp: 39,675; makefile: 454; sh: 1
file content (16 lines) | stat: -rw-r--r-- 565 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef SATURATION_H_INCLUDED
#define SATURATION_H_INCLUDED

#include "polynomial.h"


PolynomialSet nonHomogeneousSaturation(PolynomialSet const &s);//Computes (I:x_1..x_n^\infty), returns marked Groebner basis

// Not implemented:
//PolynomialSet colonIdeal(PolynomialSet const &ideal, polynomial f);// Computes a Gr\"obner basis for (I:f). The input set "ideal" does not have to be a Gr\"obner basis

 
PolynomialSet idealIntersection(PolynomialSet const &a, PolynomialSet const &b);//Computes the intersection of two ideals in the same polynomial ring


#endif