Changeset 8086 for branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4
- Timestamp:
- 06/22/12 11:11:38 (12 years ago)
- Location:
- branches/ScatterSearch (trunk integration)
- Files:
-
- 2 edited
- 26 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)
- Property svn:ignore
-
old new 20 20 bin 21 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting.Views (added) merged: 7896,7900,7906,7923,7967,8053
- Property svn:mergeinfo changed
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4/Plugin.cs.frame
r8052 r8086 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4/Properties/AssemblyInfo.cs.frame
r8052 r8086 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 31 31 [assembly: AssemblyCompany("")] 32 32 [assembly: AssemblyProduct("HeuristicLab")] 33 [assembly: AssemblyCopyright("(c) 2002-201 0HEAL")]33 [assembly: AssemblyCopyright("(c) 2002-2012 HEAL")] 34 34 [assembly: AssemblyTrademark("")] 35 35 [assembly: AssemblyCulture("")] -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPImportDialog.Designer.cs
r8052 r8086 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPImportDialog.cs
r8052 r8086 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.ComponentModel; 24 using System.Text;25 24 using System.Windows.Forms; 26 using HeuristicLab.Data;27 25 28 26 namespace HeuristicLab.Problems.VehicleRouting.Views { … … 79 77 if (MessageBox.Show("Do you want to open the HeuristicLab wiki website?", "Help", 80 78 MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1) == System.Windows.Forms.DialogResult.Yes) { 81 79 System.Diagnostics.Process.Start("http://dev.heuristiclab.com/trac/hl/core/wiki/Vehicle%20Routing%20Problem"); 82 80 } 83 81 } -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPProblemInstanceView.cs
r8052 r8086 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.ComponentModel;25 using System.Data;26 24 using System.Drawing; 27 using System.Text;28 25 using System.Windows.Forms; 29 26 using HeuristicLab.Core.Views; … … 100 97 break; 101 98 } 102 99 103 100 i++; 104 101 if (i == 6) { 105 102 i = 0; 106 103 107 if (r >= step)104 if (r >= step) 108 105 r -= step; 109 106 110 if (g >= step)111 g -= step;107 if (g >= step) 108 g -= step; 112 109 113 if (b >= step)114 b -= step;115 } 110 if (b >= step) 111 b -= step; 112 } 116 113 } 117 114 -
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPSolutionView.cs
r8052 r8086 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 0Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using System; 23 using System.Collections.Generic;24 using System.ComponentModel;25 using System.Data;26 using System.Drawing;27 23 using System.Text; 28 24 using System.Windows.Forms; 29 25 using HeuristicLab.MainForm; 30 using HeuristicLab.Parameters;31 26 32 27 namespace HeuristicLab.Problems.VehicleRouting.Views { 33 28 [View("VRPSolution View")] 34 [Content(typeof(VRPSolution), true)] 35 public partial class VRPSolutionView : HeuristicLab.Core.Views.ItemView {29 [Content(typeof(VRPSolution), true)] 30 public partial class VRPSolutionView : HeuristicLab.Core.Views.ItemView { 36 31 public new VRPSolution Content { 37 32 get { return (VRPSolution)base.Content; } 38 33 set { base.Content = value; } 39 } 40 34 } 35 41 36 public VRPSolutionView() { 42 37 InitializeComponent();
Note: See TracChangeset
for help on using the changeset viewer.