Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/11 03:23:32 (13 years ago)
Author:
abeham
Message:

#1330

  • worked on visualization (and MDS)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/QAP/HeuristicLab.Problems.QuadraticAssignment/3.3/QAPAssignment.cs

    r5583 r5641  
    2121    }
    2222
    23     public DoubleMatrix ViewCoordinates { get; set; }
     23    [Storable]
     24    private DoubleMatrix viewCoordinates;
     25    public DoubleMatrix ViewCoordinates {
     26      get { return viewCoordinates; }
     27      set {
     28        bool changed = (viewCoordinates != value);
     29        viewCoordinates = value;
     30        if (changed) OnPropertyChanged("ViewCoordinates");
     31      }
     32    }
    2433
    2534    [Storable]
     
    7685      assignment = cloner.Clone(original.assignment);
    7786      quality = cloner.Clone(original.quality);
     87      viewCoordinates = cloner.Clone(original.viewCoordinates);
    7888    }
    7989    public QAPAssignment(DoubleMatrix weights, Permutation assignment) {
Note: See TracChangeset for help on using the changeset viewer.