NBOServer.log("The server began to compute the "+
user.getUserName()+"'s "+ task+" with GEOMSolver ...", 1);
String resultString="";
long runtime = new Date().getTime();
GeomResources resources;
String dirName = this.task;
try {
resources = new GeomResources(dirName);
GeomAlgorithm algorithm = new GeomAlgorithm();
GeomResult result = algorithm.solve(resources);
resultString+=result.writeOut(dirName + "/"+ problemName +".out");
} catch (GeomFileNotFoundException e) {
this.pluginLogger.warning(e.toString());