maspack.solvers
Enum PardisoSolver.ReorderMethod
java.lang.Object
java.lang.Enum<PardisoSolver.ReorderMethod>
maspack.solvers.PardisoSolver.ReorderMethod
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<PardisoSolver.ReorderMethod>
- Enclosing class:
- PardisoSolver
public static enum PardisoSolver.ReorderMethod
- extends java.lang.Enum<PardisoSolver.ReorderMethod>
Describes the reorder methods that can be used during the analyze phase
to reduce factorization fill-in.
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
METIS
public static final PardisoSolver.ReorderMethod METIS
AMD
public static final PardisoSolver.ReorderMethod AMD
METIS_PARALLEL
public static final PardisoSolver.ReorderMethod METIS_PARALLEL
DEFAULT
public static final PardisoSolver.ReorderMethod DEFAULT
values
public static PardisoSolver.ReorderMethod[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PardisoSolver.ReorderMethod c : PardisoSolver.ReorderMethod.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PardisoSolver.ReorderMethod valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null