Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/18/09 12:45:47 (15 years ago)
Author:
gkronber
Message:

Improved stability of hive backend for CEDMA. #642 (Hive backend for CEDMA)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs

    r2055 r2057  
    107107    }
    108108
    109     private void SetResults(IScope src, IScope target) {
    110       foreach (IVariable v in src.Variables) {
    111         target.AddVariable(v);
    112       }
    113       foreach (IScope subScope in src.SubScopes) {
    114         target.AddSubScope(subScope);
    115       }
    116       foreach (KeyValuePair<string, string> alias in src.Aliases) {
    117         target.AddAlias(alias.Key, alias.Value);
    118       }
    119     }
    120 
    121109    public override string[] GetJobs() {
    122110      lock (activeAlgorithms) {
Note: See TracChangeset for help on using the changeset viewer.