Enum ComplexityClass
- Namespace
- DotCompute.Abstractions.Analysis
- Assembly
- DotCompute.Abstractions.dll
Defines computational complexity classes (Big O notation).
public enum ComplexityClass
Fields
Constant = 0O(1) - Constant time.
Cubic = 5O(n³) - Cubic time.
Exponential = 6O(2^n) - Exponential time.
Factorial = 7O(n!) - Factorial time.
Linear = 2O(n) - Linear time.
Linearithmic = 3O(n log n) - Linearithmic time.
Logarithmic = 1O(log n) - Logarithmic time.
Quadratic = 4O(n²) - Quadratic time.