Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/17 13:16:56 (7 years ago)
Author:
pkimmesw
Message:

#2665 fixed enable/disable issue for single instruction in selection view

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/PooledPushInterpreter.cs

    r14744 r14747  
    44  using HeuristicLab.Core;
    55  using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
     6  using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;
     7  using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
    68
    79  public class PooledPushInterpreter : PushInterpreter, IDisposable {
     
    911    private readonly PushInterpreterPool pool;
    1012
    11     public PooledPushInterpreter(PushInterpreterPool pool, PushConfiguration config, IRandom random = null)
    12       : base(config, random) {
     13    public PooledPushInterpreter(PushInterpreterPool pool, PushConfiguration config, ManagedPoolProvider<PushProgram> pushProgramPoolProvider, IRandom random = null)
     14      : base(config, random, pushProgramPoolProvider) {
    1315      this.pool = pool;
    1416    }
Note: See TracChangeset for help on using the changeset viewer.