- Timestamp:
- 08/12/11 23:30:19 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/GeneralizedQuadraticAssignmentProblem.cs
r6657 r6659 78 78 set { InstallationCostsParameter.Value = value; } 79 79 } 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; } 83 83 } 84 84 public DoubleArray Demands { … … 131 131 InstallationCosts = new DoubleMatrix(3, 3); 132 132 133 TransportationCosts = new DoubleValue(1);133 TransportationCosts = 1; 134 134 135 135 Demands = new DoubleArray(5);
Note: See TracChangeset
for help on using the changeset viewer.