GetInput.java
10.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import org.chocosolver.solver.Model;
import org.chocosolver.solver.Solution;
import org.chocosolver.solver.Solver;
import org.chocosolver.solver.constraints.Constraint;
import org.chocosolver.solver.objective.ParetoOptimizer;
import org.chocosolver.solver.variables.IntVar;
import java.io.*;
import java.util.List;
import java.util.Scanner;
public class GetInput {
public static void giveDomains (Model model, IntVar[] ugs, String dir, IntVar[] woodYield, IntVar[] soillossTotal,
IntVar[] perc_r_Total, UG[] nodes, int R_option){
int index = 0;
try {
File allUg = new File(dir + "/ugs_init.txt");
Scanner readerUg = new Scanner(allUg);
File myObjWood = new File(dir + "/wood_total_init.txt");
Scanner myReaderWood = new Scanner(myObjWood);
File myObjSoil = new File(dir + "/soilloss_total_init.txt");
Scanner myReaderSoil = new Scanner(myObjSoil);
String percR_dir;
int R;
switch(R_option) {
case 1:
percR_dir = "/perc_r5_total_init.txt";
R = 5;
break;
case 2:
percR_dir = "/perc_r10_total_init.txt";
R = 10;
break;
default:
percR_dir = "/perc_r0_total_init.txt";
R = 0;
}
File myObjPerc_r = new File(dir + percR_dir);
Scanner myReaderPerc_r = new Scanner(myObjPerc_r);
while (readerUg.hasNextLine()) {
String dataUg = readerUg.nextLine();
String dataWood = myReaderWood.nextLine();
String dataSoil = myReaderSoil.nextLine();
String dataPerc_r = myReaderPerc_r.nextLine();
if(nodes[index].valid) {
String[] str_split = dataUg.split(",", 0);
String[] str_split_wood = dataWood.split(",", 0);
String[] str_split_soil = dataSoil.split(",", 0);
String[] str_split_percr = dataPerc_r.split(",", 0);
int size = str_split.length;
int[] toInsert = new int[size];
int[] toInsertWood = new int[size];
int[] toInsertSoil = new int[size];
int[] toInsertPercR = new int[size];
for (int i = 0; i < size; i++) {
toInsert[i] = Integer.parseInt(str_split[i]);
toInsertWood[i] = (int) Float.parseFloat(str_split_wood[i]);
toInsertSoil[i] = (int) Float.parseFloat(str_split_soil[i]);
toInsertPercR[i] = (int) Float.parseFloat(str_split_percr[i]);
}
ugs[index] = model.intVar("UG_" + (index), toInsert);
woodYield[index] = model.intVar("Wood_Yield_" + (index), toInsertWood);
soillossTotal[index] = model.intVar("Soilloss_" + (index), toInsertSoil);
perc_r_Total[index] = model.intVar("RiskPercentileR"+R+":" + (index), toInsertPercR);
}
else {
ugs[index] = model.intVar("UG_"+(index), 0);
woodYield[index] = model.intVar("Wood_Yield_"+(index), 0);
soillossTotal[index] = model.intVar("Soilloss_" + (index), 0);
perc_r_Total[index] = model.intVar("RiskPercentileR"+R+":" + (index), 0);
}
index++;
}
readerUg.close();
myReaderWood.close();
myReaderSoil.close();
myReaderPerc_r.close();
} catch (FileNotFoundException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
public static void main(String[] args) throws IOException {
//TODO: Escrever no output a madeira obtida POR ANO
int areaLimit = Integer.parseInt(args[0]);
String fileDirectory = args[1];
int ugLimit = Integer.parseInt(args[2]);
String criterion = args[4];
int R_option = Integer.parseInt(args[3]);
int R;
switch(R_option) {
case 1:
R = 5;
break;
case 2:
R = 10;
break;
default:
R = 0;}
Model m = new Model("Forest Management");
BufferedReader reader = new BufferedReader(new FileReader(fileDirectory + "/ugs_init.txt"));
int nUgs = 0;
while (reader.readLine() != null) nUgs++;
reader.close();
UG[] nodes = new UG[nUgs];
UG.fillArray(nodes, fileDirectory, ugLimit);
IntVar[] ugs = new IntVar[nUgs]; // same for the constraint variable array
IntVar[] woodYield = new IntVar[nUgs];
IntVar[] soillossTotal = new IntVar[nUgs];
IntVar[] perc_r_Total = new IntVar[nUgs];
giveDomains(m, ugs, fileDirectory, woodYield, soillossTotal, perc_r_Total, nodes, R_option); // reads the ugs_init file and initializes each variable with its possible prescription values as domain
System.out.println("running");
for(int ugIndex = 0; ugIndex < nodes.length; ugIndex++) { //loops through every UG
//the propagator takes as parameters the index of the UG we are starting out from
//the nodes with all the info, the constraint variable array and the area limit
if(nodes[ugIndex].valid) {
new Constraint("Area Limit Constraint", new CustomPropagator2(ugIndex, nodes, ugs, areaLimit, woodYield)).post();
}
}
int valids = 0;
for(int i = 0; i < nodes.length; i++){
if(nodes[i].valid) {
//System.out.println(ugs[i]);
valids++;
}
}
for(int i = 0; i < nodes.length; i++){
if(nodes[i].valid) {
IntVar prescIndex = m.intVar(0, 255);
m.element(ugs[i], nodes[i].presc, prescIndex).post();
m.element(woodYield[i], nodes[i].wood_total, prescIndex).post();
m.element(soillossTotal[i], nodes[i].soilloss_total, prescIndex).post();
switch(R_option) {
case 1:
m.element(perc_r_Total[i], nodes[i].perc_r5_total, prescIndex).post();
break;
case 2:
m.element(perc_r_Total[i], nodes[i].perc_r10_total, prescIndex).post();
break;
default:
m.element(perc_r_Total[i], nodes[i].perc_r0_total, prescIndex).post();
}
}
else{
//System.out.println("UG_"+i + " "+woodYield[i]);
m.arithm(woodYield[i], "=", 0).post();
m.arithm(soillossTotal[i], "=", 0).post();
m.arithm(perc_r_Total[i], "=", 0).post();
}
}
IntVar woodSum = m.intVar("WOOD_SUM", 0, 99999999);
IntVar soilSum = m.intVar("SOIL_SUM", 0, 99999999);
IntVar percRSum = m.intVar("RiskPercentile_R"+R, 0, 99999999);
m.sum(woodYield,"=", woodSum).post();
m.sum(soillossTotal,"=", soilSum).post();
m.sum(perc_r_Total,"=", percRSum).post();
// Single Criterion Optimization
if(criterion.equalsIgnoreCase("single")) {
m.setObjective(Model.MAXIMIZE, woodSum);
//m.setObjective(Model.MINIMIZE, soilSum);
//m.setObjective(Model.MINIMIZE, percRSum);
Solver s = m.getSolver();
if (s.solve()) {
FileWriter outputPairs = new FileWriter("outputPairs.csv");
FileWriter woodByYear = new FileWriter("woodByYear.csv");
for (int i = 0; i < ugs.length; i++) {
if (nodes[i].valid) {
//System.out.println(woodYield[i]);
System.out.println(ugs[i] + ", wy:" + woodYield[i] + ", sl:" + soillossTotal[i] + ", R" + R + ":" + perc_r_Total[i]);
outputPairs.write(nodes[i].externalId + "," + ugs[i].getValue() + "\n");
}
}
outputPairs.close();
System.out.println(woodSum);
System.out.println(soilSum);
System.out.println(percRSum);
}
}
else {
//Multi Criterion with Pareto
IntVar one = m.intVar(1);
IntVar soilToMaximize = m.intVar(-9999999,9999999);
m.arithm(soilToMaximize, "=", one, "-", soilSum).post();
IntVar percToMaximize = m.intVar(-9999999,9999999);
m.arithm(percToMaximize, "=", one, "-", percRSum).post();
ParetoOptimizer po = new ParetoOptimizer(Model.MAXIMIZE, new IntVar[]{woodSum, soilToMaximize, percToMaximize});
Solver solver = m.getSolver();
solver.plugMonitor(po);
// optimization
int l = 1;
long startTime = System.currentTimeMillis(); //fetch starting time
try{
while(solver.solve() & (System.currentTimeMillis()-startTime)<28800000)
{
l++;
}
}
catch (OutOfMemoryError e){
System.out.println("Reached Exception");
}
System.out.println("still went?");
List<Solution> paretoFront = po.getParetoFront();
System.out.println("The pareto front has " + paretoFront.size() + " solutions : ");
FileWriter outputPairs = new FileWriter("outputPairsMulti.csv");
int l2 = 0;
for (Solution so : paretoFront) {
System.out.println("Wood = " + so.getIntVal(woodSum) + ", Soil = " + so.getIntVal(soilSum)+
", Perc_R"+R+":"+so.getIntVal(percRSum));
outputPairs.write("Pareto Solution: " + l2 + ", Wood: "+so.getIntVal(woodSum)+", Soil:"+so.getIntVal(soilSum)+
", Perc_R"+R+":"+so.getIntVal(percRSum)+"\n");
for (int i = 0; i < ugs.length; i++) {
if (nodes[i].valid) {
//System.out.println(woodYield[i]);
System.out.println(ugs[i] + ", wy:" + woodYield[i] + ", sl:" + soillossTotal[i] + ", R" + R + ":" + perc_r_Total[i]);
outputPairs.write(nodes[i].externalId + "," +so.getIntVal(ugs[i]) + "\n");
}
}
l2++;
}
outputPairs.close();
System.out.println(l + " solutions");
}
}
}