hrntsm/Tunny

View on GitHub
Tunny.Core/TEnum/SamplerType.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace Tunny.Core.TEnum
{
    public enum SamplerType
    {
        TPE = 0,
        GP = 1,
        BoTorch = 2,
        NSGAII = 3,
        NSGAIII = 4,
        CmaEs = 5,
        QMC = 6,
        Random = 7,
        BruteForce = 8,
    }
}