logManager.printText(level2, false, "Evaluate unfinished node" + ": " + node);
}
//Note: In this implementation don't is averiguated if already have a equal MFragInstance.
//Build the MFragInstance related to the node
MFragInstance mFragInstance = MFragInstance.getInstance(node.getResidentNode().getMFrag());
//Add the arguments
for(int i = 0; i < node.getOvArray().length; i++){
try {
mFragInstance.addOVValue(node.getOvArray()[i], node.getEntityArray()[i].getInstanceName());
} catch (MFragContextFailException e) {
//this is a bug... the context can't fail here.
throw new SSBNNodeGeneralException(e.getMessage());
}
}