Examples of inHNF()


Examples of org.asturlinux.frade.currin.program.type.CurrinExpr.inHNF()

    public String printResult() {
  Logger logger = Logger.getLogger("RuntimeLogger");
  logger.debug("End Program. Begin result evaluation");
  CurrinExpr ce = getResult().evaluate(this);
  for (int i = 0; !ce.inHNF(); i++) {
      ce = ce.evaluate(this);
      ce.print();
  }
  logger.debug("Return evaluated result");
  return ce.print();
View Full Code Here

Examples of org.asturlinux.frade.currin.program.type.CurrinRef.inHNF()

  Logger logger = Logger.getLogger("RuntimeLogger");
  logger.debug("Primitive 62 62 ");

  CurrinRef action1 = (CurrinRef)_param_refs.get(0);
  //evaluateSubExpr(m, action1);
  while (!action1.inHNF() ) {
      action1.evaluate(m);
  }
  CurrinRef action2 = (CurrinRef)_param_refs.get(1);
  //evaluateSubExpr(m, action2);
  while (!action2.inHNF() ) {
View Full Code Here

Examples of org.asturlinux.frade.currin.program.type.CurrinRef.inHNF()

  while (!action1.inHNF() ) {
      action1.evaluate(m);
  }
  CurrinRef action2 = (CurrinRef)_param_refs.get(1);
  //evaluateSubExpr(m, action2);
  while (!action2.inHNF() ) {
      action2.evaluate(m);
  }

  m.setResult( new CurrinRef(new CurrinConstr("EMPTY", new Vector())));
    }
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.