Package edu.jas.gb
Class GBDistSP<C extends RingElem<C>>
- java.lang.Object
-
- edu.jas.gb.GBDistSP<C>
-
-
Field Summary
Fields Modifier and Type Field Description private GroebnerBaseSeqPairDistributed<C>bbdDeprecated.GB algorithm to use.private DistThreadPooldtpDeprecated.Distributed thread pool to use.private java.lang.StringmfileDeprecated.machine file to use.protected intportDeprecated.Server port to use.protected intthreadsDeprecated.Number of threads to use.
-
Constructor Summary
Constructors Constructor Description GBDistSP(int threads, java.lang.String mfile, int port)Deprecated.Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.List<GenPolynomial<C>>execute(java.util.List<GenPolynomial<C>> F)Deprecated.Execute a distributed GB example.voidterminate(boolean shutDown)Deprecated.Terminates the distributed thread pools.
-
-
-
Field Detail
-
mfile
private final java.lang.String mfile
Deprecated.machine file to use.
-
threads
protected final int threads
Deprecated.Number of threads to use.
-
port
protected final int port
Deprecated.Server port to use.
-
bbd
private final GroebnerBaseSeqPairDistributed<C extends RingElem<C>> bbd
Deprecated.GB algorithm to use.
-
dtp
private final DistThreadPool dtp
Deprecated.Distributed thread pool to use.
-
-
Method Detail
-
execute
public java.util.List<GenPolynomial<C>> execute(java.util.List<GenPolynomial<C>> F)
Deprecated.Execute a distributed GB example. Distribute clients and start master.- Parameters:
F- list of polynomials- Returns:
- GB(F) a Groebner base for F.
-
terminate
public void terminate(boolean shutDown)
Deprecated.Terminates the distributed thread pools.- Parameters:
shutDown- true, if shut-down of the remote executable servers is requested, false, if remote executable servers stay alive.
-
-