Changeset 13555
- Timestamp:
- 01/19/16 10:06:29 (9 years ago)
- Location:
- branches/thasling/DistributedGA
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.ContactServer/ContactServiceImpl.cs
r13538 r13555 75 75 DateTime tmp; 76 76 if (allPeers.TryGetValue(pi, out tmp)) { 77 //if (tmp.AddHours(1f) < deadline)78 if (tmp < deadline.AddHours(1f)) {77 if (tmp.AddHours(1f) < deadline) { 78 //if (tmp < deadline.AddHours(1f)) { 79 79 itemsToDelete.Add(pi); 80 80 } -
branches/thasling/DistributedGA/DistributedGA.Hive/Program.cs
r13541 r13555 1 2 using System; 1 using System; 3 2 using System.ServiceModel; 4 3 using HeuristicLab.Clients.Hive; -
branches/thasling/DistributedGA/DistributedGA.sln
r13524 r13555 2 2 Microsoft Visual Studio Solution File, Format Version 12.00 3 3 # Visual Studio 2013 4 VisualStudioVersion = 12.0. 21005.14 VisualStudioVersion = 12.0.31101.0 5 5 MinimumVisualStudioVersion = 10.0.40219.1 6 6 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedGA.Test", "DistributedGA.Test\DistributedGA.Test.csproj", "{E0E91C06-C56A-454F-9F7C-3FA7AE7F920E}" … … 15 15 EndProject 16 16 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedGA.Core.Host", "DistributedGA.Core.Host\DistributedGA.Core.Host.csproj", "{81CDDF40-E50C-4A78-90EC-D0DD43DA5690}" 17 EndProject 18 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistributedGA.Hive", "DistributedGA.Hive\DistributedGA.Hive.csproj", "{F191E644-1AFC-4825-8897-E79A6ED91B20}" 17 19 EndProject 18 20 Global … … 46 48 {81CDDF40-E50C-4A78-90EC-D0DD43DA5690}.Release|Any CPU.ActiveCfg = Release|Any CPU 47 49 {81CDDF40-E50C-4A78-90EC-D0DD43DA5690}.Release|Any CPU.Build.0 = Release|Any CPU 50 {F191E644-1AFC-4825-8897-E79A6ED91B20}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 51 {F191E644-1AFC-4825-8897-E79A6ED91B20}.Debug|Any CPU.Build.0 = Debug|Any CPU 52 {F191E644-1AFC-4825-8897-E79A6ED91B20}.Release|Any CPU.ActiveCfg = Release|Any CPU 53 {F191E644-1AFC-4825-8897-E79A6ED91B20}.Release|Any CPU.Build.0 = Release|Any CPU 48 54 EndGlobalSection 49 55 GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset
for help on using the changeset viewer.