Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/12/11 23:30:19 (14 years ago)
Author:
abeham
Message:

#1619

  • experimented with a first locally working version
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GeneralizedQuadraticAssignmentProblem.cs

    r6657 r6659  
    7878      set { InstallationCostsParameter.Value = value; }
    7979    }
    80     public DoubleValue TransportationCosts {
    81       get { return TransportationCostsParameter.Value; }
    82       set { TransportationCostsParameter.Value = value; }
     80    public double TransportationCosts {
     81      get { return TransportationCostsParameter.Value.Value; }
     82      set { TransportationCostsParameter.Value.Value = value; }
    8383    }
    8484    public DoubleArray Demands {
     
    131131      InstallationCosts = new DoubleMatrix(3, 3);
    132132
    133       TransportationCosts = new DoubleValue(1);
     133      TransportationCosts = 1;
    134134
    135135      Demands = new DoubleArray(5);
Note: See TracChangeset for help on using the changeset viewer.