Skip to content

Commit

Permalink
Fix warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
aoli-al committed Nov 20, 2024
1 parent f23f79c commit 42c4bc8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public record GeneratorRecord(int Priority, StrategyGenerator Generator, List<in
private int _pendingMutations = 0;
private bool _shouldExploreNew = false;
private HashSet<GeneratorRecord> _visitedGenerators = new HashSet<GeneratorRecord>();
private GeneratorRecord? _currentParent = null;
private GeneratorRecord _currentParent = null;

private System.Random _rnd = new System.Random();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ internal class PCTScheduler : IScheduler
/// </summary>
private readonly IRandomValueGenerator _randomValueGenerator;

/// <summary>
/// The maximum number of steps to schedule.
/// </summary>
private readonly int MaxScheduledSteps;

/// <summary>
/// The number of scheduled steps.
/// </summary>
Expand Down

0 comments on commit 42c4bc8

Please sign in to comment.