Free cookie consent management tool by TermsFeed Policy Generator

Changeset 828


Ignore:
Timestamp:
11/26/08 16:35:13 (15 years ago)
Author:
msteinbi
Message:

Client Groups in dummy Implementation (#395)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.Core/ClientManager.cs

    r827 r828  
    1616      clientGroups = new List<ClientGroup>();
    1717
    18       ClientInfo c1 = new ClientInfo { ClientId=Guid.NewGuid(), CpuSpeedPerCore=2500, Memory=4096, ResourceId=1, State=State.idle }
    19       ClientInfo c2 = new ClientInfo { ClientId=Guid.NewGuid(), CpuSpeedPerCore=2100, Memory=2048, ResourceId=2, State=State.idle }
    20       ClientInfo c3 = new ClientInfo { ClientId=Guid.NewGuid(), CpuSpeedPerCore=3400, Memory=4096, ResourceId=3, State=State.calculating }
     18      ClientInfo c1 = new ClientInfo { ClientId=Guid.NewGuid(), CpuSpeedPerCore=2500, Memory=4096, ResourceId=1, State=State.idle };
     19      ClientInfo c2 = new ClientInfo { ClientId=Guid.NewGuid(), CpuSpeedPerCore=2100, Memory=2048, ResourceId=2, State=State.idle };
     20      ClientInfo c3 = new ClientInfo { ClientId = Guid.NewGuid(), CpuSpeedPerCore = 3400, Memory = 4096, ResourceId = 3, State = State.calculating };
    2121
    2222      clients.Add(c1);
Note: See TracChangeset for help on using the changeset viewer.