Class ParForBody
- java.lang.Object
 - 
- org.apache.sysds.runtime.controlprogram.parfor.ParForBody
 
 
- 
public class ParForBody extends Object
Wrapper for exchanging parfor body data structures. 
- 
- 
Constructor Summary
Constructors Constructor Description ParForBody()ParForBody(ArrayList<ProgramBlock> childBlocks, ArrayList<ParForStatementBlock.ResultVar> resultVars, ExecutionContext ec) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayList<ProgramBlock>getChildBlocks()ExecutionContextgetEc()ArrayList<ParForStatementBlock.ResultVar>getResultVariables()LocalVariableMapgetVariables()voidsetChildBlocks(ArrayList<ProgramBlock> childBlocks)voidsetEc(ExecutionContext ec)voidsetResultVariables(ArrayList<ParForStatementBlock.ResultVar> resultVars) 
 - 
 
- 
- 
Constructor Detail
- 
ParForBody
public ParForBody()
 
- 
ParForBody
public ParForBody(ArrayList<ProgramBlock> childBlocks, ArrayList<ParForStatementBlock.ResultVar> resultVars, ExecutionContext ec)
 
 - 
 
- 
Method Detail
- 
getVariables
public LocalVariableMap getVariables()
 
- 
getResultVariables
public ArrayList<ParForStatementBlock.ResultVar> getResultVariables()
 
- 
setResultVariables
public void setResultVariables(ArrayList<ParForStatementBlock.ResultVar> resultVars)
 
- 
getChildBlocks
public ArrayList<ProgramBlock> getChildBlocks()
 
- 
setChildBlocks
public void setChildBlocks(ArrayList<ProgramBlock> childBlocks)
 
- 
getEc
public ExecutionContext getEc()
 
- 
setEc
public void setEc(ExecutionContext ec)
 
 - 
 
 -