Package lipstone.joshua.parser.backend

Examples of lipstone.joshua.parser.backend.StepSolveThread.join()


 
  public ArrayList<BigDec> stepSolveDomain(ConsCell equation, BigDec xMin, BigDec xMax, BigDec delta) throws ParserException {
    ArrayList<BigDec> output = new ArrayList<BigDec>();
    StepSolveThread thread = new StepSolveThread(equation, parser, delta, accuracy, xMin, xMax, parser.getVars(), new BigDec(500));
    parser.getFjPool().execute(thread);
    output = thread.join();
    if (thread.error != null)
      throw thread.error;
    return output;
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.