Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/10 17:48:10 (14 years ago)
Author:
cneumuel
Message:

HiveExperiment is now able to send IOptimizers of an Experiment and receive the calculated result (#1115)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.LINQDataAccess/3.3/JobDao.cs

    r4116 r4119  
    2626
    2727    public IEnumerable<JobDto> FindWithLimitations(State jobState, int offset, int count) {
    28 
    2928      IQueryable<JobDto> query = null;
    3029      if (jobState == State.Finished) {
     
    8079      job.JobInfo.Id = j.JobId;
    8180      return job;
    82 
    8381    }
    8482
     
    104102              select EntityToDto(j, null)).ToList();
    105103    }
     104
    106105    public IEnumerable<JobDto> FindFittingJobsForClient(State state, int freeCores, int freeMemory, Guid clientId) {
    107106      ClientGroupDao cgd = new ClientGroupDao();
     
    119118               select EntityToDto(ar.Job, null));
    120119      return q.ToList();
    121      
    122120    }
    123121
Note: See TracChangeset for help on using the changeset viewer.