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
|
#include "parser.h"
#include "printer.h"
#include "primarydecomposition.h"
#include "gfanapplication.h"
class MinimalAssociatedPrimesApplication : public GFanApplication
{
public:
bool includeInDefaultInstallation()
{
return false;
}
const char *helpText()
{
return "This program computes the minimal associated primes of an ideal. It attempts to call Singular through a Sage interface. The only reason for having this program is to illustrate how such communication can be done.\n";
}
MinimalAssociatedPrimesApplication() {
registerOptions();
}
const char *name()
{
return "_minimalassociatedprimes";
}
int main()
{
FileParser P(Stdin);
PolynomialSet a=P.parsePolynomialSetWithRing();
AsciiPrinter(Stdout).printPolynomialSetList(minimalAssociatedPrimes(a));
return 0;
}
};
static MinimalAssociatedPrimesApplication theApplication;
|