Javolution 6.0.0 java
|
Public Attributes | |
CONSTANT | |
LOG_N | |
LINEAR | |
N_LOG_N | |
N_SQUARE | |
UNKNOWN | |
Identifies the limit behavior for the worst case execution time.
Definition at line 81 of file Realtime.java.
javolution.lang.Realtime.Limit.CONSTANT |
The worst case execution time is constant.
Definition at line 86 of file Realtime.java.
javolution.lang.Realtime.Limit.LINEAR |
The worst case execution time is bounded in O(n) with n characteristic of the current size of the inputs.
Definition at line 98 of file Realtime.java.
javolution.lang.Realtime.Limit.LOG_N |
The worst case execution time is bounded in O(log(n)) with n characteristic of the current size of the inputs.
Definition at line 92 of file Realtime.java.
javolution.lang.Realtime.Limit.N_LOG_N |
The worst case execution time is bounded in O(n log(n)) with n characteristic of the current size of the inputs.
Definition at line 104 of file Realtime.java.
javolution.lang.Realtime.Limit.N_SQUARE |
The worst case execution time is bounded in O(n²) with n characteristic of the current size of the inputs.
Definition at line 110 of file Realtime.java.
javolution.lang.Realtime.Limit.UNKNOWN |
The limit behavior of the worst case execution time is unknown or unspecified.
Definition at line 116 of file Realtime.java.