Package cl.niclabs.skandium.instructions

Examples of cl.niclabs.skandium.instructions.Instruction


   
      //iterate while there are instructions and no children tasks
      while(!stack.empty() && children.size() <= 0){
   
        //pop the instruction and interpret it
        Instruction inst = stack.pop();
        strace= inst.getSkeletonTrace()//skeleton trace in case of exception
        P = inst.interpret(P, stack, children);
       
        //check that the task has not been canceled
        if(task.isCancelled()) return task;
      }
     
View Full Code Here

TOP

Related Classes of cl.niclabs.skandium.instructions.Instruction

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.