Package operations_research.pdlp
Enum SolveLogOuterClass.PointType
- java.lang.Object
-
- java.lang.Enum<SolveLogOuterClass.PointType>
-
- operations_research.pdlp.SolveLogOuterClass.PointType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,java.io.Serializable,java.lang.Comparable<SolveLogOuterClass.PointType>
- Enclosing class:
- SolveLogOuterClass
public static enum SolveLogOuterClass.PointType extends java.lang.Enum<SolveLogOuterClass.PointType> implements com.google.protobuf.ProtocolMessageEnum
Identifies the type of point used to compute the fields in a given proto; see ConvergenceInformation and InfeasibilityInformation.
Protobuf enumoperations_research.pdlp.PointType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description POINT_TYPE_AVERAGE_ITERATEAverage of iterates since the last restart.POINT_TYPE_CURRENT_ITERATECurrent iterate (x_k, y_k).POINT_TYPE_FEASIBILITY_POLISHING_SOLUTIONCombined solution from primal and dual feasibility polishing.POINT_TYPE_ITERATE_DIFFERENCEDifference of iterates (x_{k+1} - x_k, y_{k+1} - y_k).POINT_TYPE_NONEThere is no corresponding point.POINT_TYPE_PRESOLVER_SOLUTIONOutput of presolver.POINT_TYPE_UNSPECIFIEDPOINT_TYPE_UNSPECIFIED = 0;
-
Field Summary
Fields Modifier and Type Field Description static intPOINT_TYPE_AVERAGE_ITERATE_VALUEAverage of iterates since the last restart.static intPOINT_TYPE_CURRENT_ITERATE_VALUECurrent iterate (x_k, y_k).static intPOINT_TYPE_FEASIBILITY_POLISHING_SOLUTION_VALUECombined solution from primal and dual feasibility polishing.static intPOINT_TYPE_ITERATE_DIFFERENCE_VALUEDifference of iterates (x_{k+1} - x_k, y_{k+1} - y_k).static intPOINT_TYPE_NONE_VALUEThere is no corresponding point.static intPOINT_TYPE_PRESOLVER_SOLUTION_VALUEOutput of presolver.static intPOINT_TYPE_UNSPECIFIED_VALUEPOINT_TYPE_UNSPECIFIED = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SolveLogOuterClass.PointTypeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<SolveLogOuterClass.PointType>internalGetValueMap()static SolveLogOuterClass.PointTypevalueOf(int value)Deprecated.static SolveLogOuterClass.PointTypevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static SolveLogOuterClass.PointTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SolveLogOuterClass.PointType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POINT_TYPE_UNSPECIFIED
public static final SolveLogOuterClass.PointType POINT_TYPE_UNSPECIFIED
POINT_TYPE_UNSPECIFIED = 0;
-
POINT_TYPE_CURRENT_ITERATE
public static final SolveLogOuterClass.PointType POINT_TYPE_CURRENT_ITERATE
Current iterate (x_k, y_k).
POINT_TYPE_CURRENT_ITERATE = 1;
-
POINT_TYPE_ITERATE_DIFFERENCE
public static final SolveLogOuterClass.PointType POINT_TYPE_ITERATE_DIFFERENCE
Difference of iterates (x_{k+1} - x_k, y_{k+1} - y_k).POINT_TYPE_ITERATE_DIFFERENCE = 2;
-
POINT_TYPE_AVERAGE_ITERATE
public static final SolveLogOuterClass.PointType POINT_TYPE_AVERAGE_ITERATE
Average of iterates since the last restart.
POINT_TYPE_AVERAGE_ITERATE = 3;
-
POINT_TYPE_NONE
public static final SolveLogOuterClass.PointType POINT_TYPE_NONE
There is no corresponding point.
POINT_TYPE_NONE = 4;
-
POINT_TYPE_PRESOLVER_SOLUTION
public static final SolveLogOuterClass.PointType POINT_TYPE_PRESOLVER_SOLUTION
Output of presolver.
POINT_TYPE_PRESOLVER_SOLUTION = 5;
-
POINT_TYPE_FEASIBILITY_POLISHING_SOLUTION
public static final SolveLogOuterClass.PointType POINT_TYPE_FEASIBILITY_POLISHING_SOLUTION
Combined solution from primal and dual feasibility polishing.
POINT_TYPE_FEASIBILITY_POLISHING_SOLUTION = 6;
-
-
Field Detail
-
POINT_TYPE_UNSPECIFIED_VALUE
public static final int POINT_TYPE_UNSPECIFIED_VALUE
POINT_TYPE_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
POINT_TYPE_CURRENT_ITERATE_VALUE
public static final int POINT_TYPE_CURRENT_ITERATE_VALUE
Current iterate (x_k, y_k).
POINT_TYPE_CURRENT_ITERATE = 1;- See Also:
- Constant Field Values
-
POINT_TYPE_ITERATE_DIFFERENCE_VALUE
public static final int POINT_TYPE_ITERATE_DIFFERENCE_VALUE
Difference of iterates (x_{k+1} - x_k, y_{k+1} - y_k).POINT_TYPE_ITERATE_DIFFERENCE = 2;- See Also:
- Constant Field Values
-
POINT_TYPE_AVERAGE_ITERATE_VALUE
public static final int POINT_TYPE_AVERAGE_ITERATE_VALUE
Average of iterates since the last restart.
POINT_TYPE_AVERAGE_ITERATE = 3;- See Also:
- Constant Field Values
-
POINT_TYPE_NONE_VALUE
public static final int POINT_TYPE_NONE_VALUE
There is no corresponding point.
POINT_TYPE_NONE = 4;- See Also:
- Constant Field Values
-
POINT_TYPE_PRESOLVER_SOLUTION_VALUE
public static final int POINT_TYPE_PRESOLVER_SOLUTION_VALUE
Output of presolver.
POINT_TYPE_PRESOLVER_SOLUTION = 5;- See Also:
- Constant Field Values
-
POINT_TYPE_FEASIBILITY_POLISHING_SOLUTION_VALUE
public static final int POINT_TYPE_FEASIBILITY_POLISHING_SOLUTION_VALUE
Combined solution from primal and dual feasibility polishing.
POINT_TYPE_FEASIBILITY_POLISHING_SOLUTION = 6;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static SolveLogOuterClass.PointType[] 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 (SolveLogOuterClass.PointType c : SolveLogOuterClass.PointType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SolveLogOuterClass.PointType 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 namejava.lang.NullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static SolveLogOuterClass.PointType valueOf(int value)
Deprecated.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:
value- 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 namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static SolveLogOuterClass.PointType forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<SolveLogOuterClass.PointType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static SolveLogOuterClass.PointType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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 namejava.lang.NullPointerException- if the argument is null
-
-