Deron Eriksson created SYSTEMML-1764:
----------------------------------------
Summary: Fix cbind value in AppendGAlignedSP constructor
Key: SYSTEMML-1764
URL: https://issues.apache.org/jira/browse/SYSTEMML-1764
Project: SystemML
Issue Type: Bug
Reporter: Deron Eriksson
Assignee: Deron Eriksson
Priority: Minor
The _cbind field in AppendGAlignedSP is hardcoded to true in the constructor
rather than being set by the cbind parameter.
{code}
public AppendGAlignedSP(Lop input1, Lop input2, Lop input3, DataType
dt, ValueType vt, boolean cbind)
{
super(Lop.Type.Append, dt, vt);
init(input1, input2, input3, dt, vt);
_cbind = true;
}
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)