hrntsm/Tunny

View on GitHub
Tunny.Core/Settings/Optimize.cs

Summary

Maintainability
A
0 mins
Test Coverage
using Tunny.Core.TEnum;
using Tunny.Settings.Sampler;

namespace Tunny.Core.Settings
{
    public class Optimize
    {
        public Sampler Sampler { get; set; } = new Sampler();
        public int NumberOfTrials { get; set; } = 100;
        public bool ContinueStudy { get; set; }
        public bool CopyStudy { get; set; }
        public SamplerType SelectSampler { get; set; }
        public double Timeout { get; set; }
        public GcAfterTrial GcAfterTrial { get; set; } = GcAfterTrial.HasGeometry;
        public bool ShowRealtimeResult { get; set; }
        public bool IgnoreDuplicateSampling { get; set; }
        public bool DisableViewportDrawing { get; set; }
    }
}