File: app_saturation.cpp

package info (click to toggle)
gfan 0.5%2Bdfsg-5
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,296 kB
  • ctags: 5,612
  • sloc: cpp: 39,675; makefile: 453; sh: 1
file content (49 lines) | stat: -rw-r--r-- 1,297 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include "parser.h"
#include "printer.h"
#include "saturation.h"
#include "tropical.h"
#include "gfanapplication.h"

class SaturationApplication : public GFanApplication
{
  SimpleOption optionIsHomogeneous;
  SimpleOption optionNoIdeal;
public:
  const char *helpText()
  {
    return "This program computes the saturation of the input ideal with the product of the variables x_1,...,x_n. The ideal does not have to be homogeneous.\n";
  }
  SaturationApplication():
    optionIsHomogeneous("-h","Tell the program that the input is a homogeneous ideal (with homogeneous generators).\n"),
    optionNoIdeal("--noideal","Do not treat input as an ideal but just factor out common monomial factors of the input polynomials.")
  {
    registerOptions();
  }

  const char *name()
  {
    return "_saturation";
  }

  int main()
  {
    FileParser P(Stdin);

    PolynomialSet a=P.parsePolynomialSetWithRing();

    AsciiPrinter(Stdout).printPolynomialRing(a.getRing());
    AsciiPrinter(Stdout).printNewLine();
    if(optionNoIdeal.getValue())
    {
    	a.saturate();
    	pout<<a;
    }
   	else
    {
    	AsciiPrinter(Stdout).printPolynomialSet(optionIsHomogeneous.getValue()?saturatedIdeal(a):nonHomogeneousSaturation(a));
    }
    return 0;
  }
};

static SaturationApplication theApplication;