You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@systemml.apache.org by "Deron Eriksson (JIRA)" <ji...@apache.org> on 2017/07/12 21:30:00 UTC

[jira] [Created] (SYSTEMML-1764) Fix cbind value in AppendGAlignedSP constructor

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)