Changeset 12747
- Timestamp:
- 07/12/15 16:00:20 (9 years ago)
- Location:
- stable
- Files:
-
- 7 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 12743
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.LinearLinkageEncoding/3.3/Manipulators/MultiLLEManipulator.cs
r12737 r12747 58 58 Operators.Add((ILinearLinkageManipulator)Activator.CreateInstance(type), true); 59 59 } 60 Operators.SetItemCheckedState(Operators.OfType<SwapItemManipulator>().First(), false);61 Operators.SetItemCheckedState(Operators.OfType<GraftManipulator>().First(), false);62 60 SelectedOperatorParameter.ActualName = "SelectedManipulationOperator"; 63 61 } -
stable/HeuristicLab.Optimizer
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimizer merged: 12743
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r12742 r12747 146 146 <EmbeddedResource Include="Documents\GridSearch_SVM_Regression_Script.hl" /> 147 147 <EmbeddedResource Include="Documents\VNS_OP.hl" /> 148 <EmbeddedResource Include="Documents\GA_Grouping.hl" /> 148 149 <None Include="Plugin.cs.frame" /> 149 150 <Compile Include="OptimizerSingleDocumentMainForm.cs"> -
stable/HeuristicLab.Optimizer/3.3/StartPage.cs
r12742 r12747 65 65 using (Stream stream = assembly.GetManifestResourceStream(typeof(StartPage), "Documents.FirstSteps.rtf")) 66 66 firstStepsRichTextBox.LoadFile(stream, RichTextBoxStreamType.RichText); 67 } 68 catch (Exception) { } 67 } catch (Exception) { } 69 68 70 69 samplesListView.Enabled = false; … … 112 111 113 112 OnAllSamplesLoaded(); 114 } 115 finally { 113 } finally { 116 114 MainFormManager.GetMainForm<HeuristicLab.MainForm.WindowsForms.MainForm>().RemoveOperationProgressFromView(samplesListView); 117 115 } … … 126 124 OnSampleLoaded(item, group, 1.0 / count); 127 125 } 128 } 129 catch (Exception) { 130 } 131 finally { 126 } catch (Exception) { 127 } finally { 132 128 if (File.Exists(path)) { 133 129 File.Delete(path); // make sure we remove the temporary file … … 137 133 138 134 private void FillGroupLookup() { 139 var standardProblems = new List<string> { "ES_Griewank", "GA_ TSP", "GA_VRP", "GE_ArtificialAnt",135 var standardProblems = new List<string> { "ES_Griewank", "GA_Grouping", "GA_TSP", "GA_VRP", "GE_ArtificialAnt", 140 136 "IslandGA_TSP", "LS_Knapsack", "PSO_Schwefel", "RAPGA_JSSP", 141 137 "SA_Rastrigin", "SGP_SantaFe","GP_Multiplexer", "SS_VRP", "TS_TSP", "TS_VRP", "VNS_OP" ,"VNS_TSP" … … 185 181 mainForm.SetWaitCursor(); 186 182 mainForm.ShowContent((IContent)((IItem)samplesListView.SelectedItems[0].Tag).Clone()); 187 } 188 finally { 183 } finally { 189 184 mainForm.ResetWaitCursor(); 190 185 } -
stable/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Tests merged: 12743
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests/HeuristicLab.Tests.csproj
r12742 r12747 189 189 <Private>False</Private> 190 190 <HintPath>..\bin\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll</HintPath> 191 </Reference> 192 <Reference Include="HeuristicLab.Encodings.LinearLinkageEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 193 <SpecificVersion>False</SpecificVersion> 194 <HintPath>..\bin\HeuristicLab.Encodings.LinearLinkageEncoding-3.3.dll</HintPath> 191 195 </Reference> 192 196 <Reference Include="HeuristicLab.Encodings.PermutationEncoding-3.3"> … … 422 426 <Compile Include="HeuristicLab-3.3\PluginDependenciesTest.cs" /> 423 427 <Compile Include="HeuristicLab-3.3\PluginLoader.cs" /> 428 <Compile Include="HeuristicLab-3.3\Samples\GAGroupingProblemSampleTest.cs" /> 424 429 <Compile Include="HeuristicLab-3.3\Samples\VnsOpSampleTest.cs" /> 425 430 <Compile Include="HeuristicLab-3.3\Samples\EsGriewankSampleTest.cs" />
Note: See TracChangeset
for help on using the changeset viewer.