Changeset 7255 for branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4
- Timestamp:
- 01/02/12 11:40:31 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 2 deleted
- 3 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks
-
branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views-3.4.csproj
r7085 r7255 117 117 </Compile> 118 118 <Compile Include="Plugin.cs" /> 119 <Compile Include="Symbolic DataAnalysisSolutionResponseFunctionView.cs">120 <SubType>UserControl</SubType> 121 </Compile> 122 <Compile Include="Symbolic DataAnalysisSolutionResponseFunctionView.Designer.cs">123 <DependentUpon>Symbolic DataAnalysisSolutionResponseFunctionView.cs</DependentUpon>119 <Compile Include="SymbolicRegressionSolutionResponseFunctionView.cs"> 120 <SubType>UserControl</SubType> 121 </Compile> 122 <Compile Include="SymbolicRegressionSolutionResponseFunctionView.Designer.cs"> 123 <DependentUpon>SymbolicRegressionSolutionResponseFunctionView.cs</DependentUpon> 124 124 </Compile> 125 125 <Compile Include="SymbolicRegressionSolutionErrorCharacteristicsCurveView.cs"> -
branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionErrorCharacteristicsCurveView.cs
r6807 r7255 67 67 } 68 68 69 var laggedVariables = Content.Model.SymbolicExpressionTree.IterateNodesPostfix()70 .OfType<LaggedVariableTreeNode>()71 .Select(n => n.Lag)72 .Where(l => l < 0);73 if (laggedVariables.Any()) throw new NotSupportedException("The symbolic regression solution contains lagged variables.");74 75 69 //check inputVariables used in the symbolic regression model 76 70 var usedVariables =
Note: See TracChangeset
for help on using the changeset viewer.