Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/12 17:26:56 (12 years ago)
Author:
sforsten
Message:

#1782:

  • HeuristicOptimizationView has been integrated in ProblemView and was deleted afterwards.
  • the icons for the load and the info button have been changed
  • QuadraticAssignmentProblem now also loads name and description of problem instance
  • A unused OpenFileDialog has been removed in QuadraticAssignmentProblemView
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/QuadraticAssignmentProblem.cs

    r7626 r7641  
    362362      var weights = new DoubleMatrix(data.Weights);
    363363      var distances = new DoubleMatrix(data.Distances);
     364      Name = data.Name;
     365      Description = data.Description;
    364366      Load(weights, distances);
    365367      EvaluateAndLoadAssignment(data.BestKnownAssignment);
     
    374376        weights[i, (i + 1) % data.Dimension] = 1;
    375377      var distances = new DoubleMatrix(data.GetDistanceMatrix());
     378      Name = data.Name;
     379      Description = data.Description;
    376380      Load(weights, distances);
    377381      EvaluateAndLoadAssignment(data.BestKnownTour);
Note: See TracChangeset for help on using the changeset viewer.