Package hu.u_szeged.nbo.geometria.main

Examples of hu.u_szeged.nbo.geometria.main.GeomResources


    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());
View Full Code Here

TOP

Related Classes of hu.u_szeged.nbo.geometria.main.GeomResources

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.