encog-dotnet-core icon indicating copy to clipboard operation
encog-dotnet-core copied to clipboard

Bug in Encog(tm) Core v3.3 - .Net Version

Open peakpeak-github opened this issue 10 years ago • 1 comments

After some debugging I have found a bug in AnalystWizard.cs 3.3, private void ExpandTimeSlices() approx. line 700: // swap back in oldList.Clear(); // oldList is cleared and then used in a foreach …

// Original line: foreach (AnalystField item in oldList)

// New line: foreach (AnalystField item in newList) // Correct list !!! { oldList.Add(item); }

These lines are only executed if wizard.LagWindowSize > 0

peakpeak-github avatar Jan 28 '15 14:01 peakpeak-github

Looks like this is fixed in commit 87b334dd0f45f4777aa9e02d7af5c5752ddaf3e6

jeroldhaas avatar Mar 08 '15 21:03 jeroldhaas