Changeset 18044
- Timestamp:
- 08/16/21 17:16:25 (3 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.App/HeuristicLab.JsonInterface.App.csproj
r18042 r18044 40 40 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 41 41 <HintPath>..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 42 </Reference>43 <Reference Include="HEAL.Attic, Version=1.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">44 <HintPath>..\packages\HEAL.Attic.1.4.0\lib\net461\HEAL.Attic.dll</HintPath>45 <Private>False</Private>46 42 </Reference> 47 43 <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> … … 95 91 <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project> 96 92 <Name>HeuristicLab.Common-3.3</Name> 97 <Private>False</Private>98 93 </ProjectReference> 99 94 <ProjectReference Include="..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> … … 122 117 <Private>False</Private> 123 118 </ProjectReference> 124 <ProjectReference Include="..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">125 <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project>126 <Name>HeuristicLab.Problems.Instances-3.3</Name>127 <Private>False</Private>128 </ProjectReference>129 119 </ItemGroup> 130 120 <ItemGroup> -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.App/Plugin.cs.frame
r18041 r18044 27 27 [Plugin("HeuristicLab.JsonInterface.App", "3.3.16.0")] 28 28 [PluginFile("HeuristicLab.JsonInterface.App.dll", PluginFileType.Assembly)] 29 [PluginDependency("HeuristicLab.Attic", "1.0")]30 29 [PluginDependency("HeuristicLab.JsonInterface", "3.3")] 31 30 [PluginDependency("HeuristicLab.Optimization", "3.3")] 32 31 [PluginDependency("HeuristicLab.Collections", "3.3")] 33 [PluginDependency("HeuristicLab.Common", "3.3")]32 //[PluginDependency("HeuristicLab.Common", "3.3")] 34 33 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 35 34 [PluginDependency("HeuristicLab.Core", "3.3")] 36 35 [PluginDependency("HeuristicLab.ParallelEngine", "3.3")] 37 [PluginDependency("HeuristicLab.Problems.Instances", "3.3")]36 //[PluginDependency("HeuristicLab.Problems.Instances", "3.3")] 38 37 public class HeuristicLabJsonInterfaceAppPlugin : PluginBase { 39 38 } -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/FileManager.cs
r18043 r18044 21 21 if (!view.Locked && content != null) { 22 22 if(content is IOptimizer) { 23 exportDialog.Content = content; 24 exportDialog.ShowDialog(); 23 try { 24 exportDialog.Content = content; 25 exportDialog.ShowDialog(); 26 } catch (Exception e) { 27 ErrorHandling.ShowErrorDialog(e); 28 } 25 29 } else { 26 30 MessageBox.Show("This cannot item cannot be converted.", "Unsupported Item", MessageBoxButtons.OK); -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/MenuItems/ExportJsonTemplateMenuItem.cs
r17331 r18044 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.Linq;4 using System.Text;5 using System.Threading.Tasks;6 3 using System.Windows.Forms; 7 4 using HeuristicLab.Common; -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Plugin.cs.frame
r17331 r18044 26 26 [Plugin("HeuristicLab.JsonInterface.OptimizerIntegration", "3.3.16.0")] 27 27 [PluginFile("HeuristicLab.JsonInterface.OptimizerIntegration.dll", PluginFileType.Assembly)] 28 [PluginDependency("HeuristicLab.Attic", "1.0")]28 //[PluginDependency("HeuristicLab.Attic", "1.0")] 29 29 [PluginDependency("HeuristicLab.JsonInterface", "3.3")] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 31 32 [PluginDependency("HeuristicLab.Core", "3.3")] 32 33 [PluginDependency("HeuristicLab.Optimization", "3.3")] -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Converters/RegressionProblemDataConverter.cs
r18043 r18044 244 244 245 245 int r = 0; 246 foreach (var callValue in x.Value) { 247 matrix[c][r] = (T)callValue; 246 foreach (var cellValue in x.Value) { 247 try { 248 matrix[c][r] = (T)cellValue; 249 } catch (Exception e) { 250 throw new AggregateException($"The cell value '{cellValue}' in row {r} cannot be converted to {typeof(T).FullName}.", e); 251 } 248 252 ++r; 249 253 } -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/HeuristicLab.JsonInterface.csproj
r18042 r18044 139 139 </ProjectReference> 140 140 <ProjectReference Include="..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj"> 141 <Project>{ a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>141 <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project> 142 142 <Name>HeuristicLab.Common-3.3</Name> 143 143 </ProjectReference> … … 178 178 <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name> 179 179 </ProjectReference> 180 <ProjectReference Include="..\HeuristicLab.Problems.Instances.DataAnalysis\3.3\HeuristicLab.Problems.Instances.DataAnalysis-3.3.csproj">181 <Project>{94c7714e-29d4-4d6d-b213-2c18d627ab75}</Project>182 <Name>HeuristicLab.Problems.Instances.DataAnalysis-3.3</Name>183 </ProjectReference>184 180 </ItemGroup> 185 181 <ItemGroup /> -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Plugin.cs.frame
r18041 r18044 28 28 [PluginDependency("HeuristicLab.Attic", "1.0")] 29 29 [PluginDependency("HeuristicLab.Collections", "3.3")] 30 [PluginDependency("HeuristicLab.Common", "3.3")]30 //[PluginDependency("HeuristicLab.Common", "3.3")] 31 31 [PluginDependency("HeuristicLab.Core", "3.3")] 32 32 [PluginDependency("HeuristicLab.Data", "3.3")] … … 37 37 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic", "3.4")] 38 38 [PluginDependency("HeuristicLab.Problems.DataAnalysis.Symbolic.Regression", "3.4")] 39 [PluginDependency("HeuristicLab.Problems.Instances.DataAnalysis", "3.3")]39 //[PluginDependency("HeuristicLab.Problems.Instances.DataAnalysis", "3.3")] 40 40 public class HeuristicLabJsonInterfacePlugin : PluginBase { 41 41 }
Note: See TracChangeset
for help on using the changeset viewer.