Skip to content

Commit

Permalink
Default to neural engines
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlang42 committed Oct 19, 2021
1 parent 49591ea commit 443475d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CastingEngine/Base/AllocationEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ public abstract class AllocationEngine : IAllocationEngine, IComparer<(Applicant
{
/// <summary>A list of available selection engines</summary>
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; }
Expand Down
2 changes: 1 addition & 1 deletion CastingEngine/Base/ApplicantEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public abstract class ApplicantEngine : IApplicantEngine
{
/// <summary>A list of available applicant engines</summary>
public static readonly Type[] Implementations = new[] {
typeof(NeuralApplicantEngine),
typeof(WeightedSumEngine),
typeof(NeuralApplicantEngine)
};

public abstract int MaxOverallAbility { get; }
Expand Down

0 comments on commit 443475d

Please sign in to comment.