Package jmt.analytical

Examples of jmt.analytical.CommandLineSolver


   * Solves the given model (xml file) using the jmva solver
   * @param model the xml File containing the model description
   * @return true if the model has been correctly solved
   */
  private boolean solve_jmva(File model) {
    CommandLineSolver solver = new CommandLineSolver();

    long start, stop, elapsed;
    start = System.currentTimeMillis();
    boolean success = solver.solve(model);
    stop = System.currentTimeMillis();
    elapsed = stop - start;

    logger.debug("Model " + model.getAbsolutePath() + " solved in " + elapsed + " milliseconds.");

View Full Code Here

TOP

Related Classes of jmt.analytical.CommandLineSolver

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.