From 443475d98f356cd3c831d2d9762d15546ca32428 Mon Sep 17 00:00:00 2001 From: David Lang Date: Tue, 19 Oct 2021 23:15:42 +1100 Subject: [PATCH] Default to neural engines --- CastingEngine/Base/AllocationEngine.cs | 6 +++--- CastingEngine/Base/ApplicantEngine.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CastingEngine/Base/AllocationEngine.cs b/CastingEngine/Base/AllocationEngine.cs index 98a587d7..f53700d7 100644 --- a/CastingEngine/Base/AllocationEngine.cs +++ b/CastingEngine/Base/AllocationEngine.cs @@ -21,11 +21,11 @@ public abstract class AllocationEngine : IAllocationEngine, IComparer<(Applicant { /// A list of available selection engines public static readonly Type[] Implementations = new[] { - typeof(HeuristicAllocationEngine), - typeof(RoleLearningAllocationEngine), typeof(SessionLearningAllocationEngine), + typeof(RoleLearningAllocationEngine), + typeof(ComplexNeuralAllocationEngine), typeof(WeightedAverageEngine), - typeof(ComplexNeuralAllocationEngine) + typeof(HeuristicAllocationEngine) }; public IApplicantEngine ApplicantEngine { get; init; } diff --git a/CastingEngine/Base/ApplicantEngine.cs b/CastingEngine/Base/ApplicantEngine.cs index 18ac5789..a98291e7 100644 --- a/CastingEngine/Base/ApplicantEngine.cs +++ b/CastingEngine/Base/ApplicantEngine.cs @@ -17,8 +17,8 @@ public abstract class ApplicantEngine : IApplicantEngine { /// A list of available applicant engines public static readonly Type[] Implementations = new[] { + typeof(NeuralApplicantEngine), typeof(WeightedSumEngine), - typeof(NeuralApplicantEngine) }; public abstract int MaxOverallAbility { get; }