Changeset 15604
- Timestamp:
- 01/12/18 13:59:01 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/CPLEX/GQAP-FY.cs
r15575 r15604 64 64 range M = 1..LOCATIONS; 65 65 66 int weights[N][N] = ...;67 int distances[M][M] = ...;68 int install[N][M] = ...;69 int demands[N] = ...;70 int capacities[M] = ...;66 float weights[N][N] = ...; 67 float distances[M][M] = ...; 68 float install[N][M] = ...; 69 float demands[N] = ...; 70 float capacities[M] = ...; 71 71 72 72 dvar int+ x[N][M] in 0..1;
Note: See TracChangeset
for help on using the changeset viewer.