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/Configuration/PushConfiguration.cs

    r14744 r14747  
    5858      this.isNameStackEnabled = origin.IsNameStackEnabled;
    5959      this.isCodeStackEnabled = origin.IsCodeStackEnabled;
    60       this.isExecStackEnabled = origin.IsExecStackEnable;
     60      this.isExecStackEnabled = origin.IsExecStackEnabled;
    6161    }
    6262
     
    155155    private bool isExecStackEnabled = true;
    156156
    157     public bool IsExecStackEnable
     157    public bool IsExecStackEnabled
    158158    {
    159159      get
     
    347347          IsCodeStackEnabled = value;
    348348          break;
     349        case StackType.Exec:
     350          this.IsExecStackEnabled = value;
     351          break;
    349352        default: throw new InvalidOperationException("Stacktype unkown");
    350353      }
Note: See TracChangeset for help on using the changeset viewer.