/// <summary>2項演算</summary>
        internal static Tensor FactorArithmetric(Tensor x1, Tensor x2, Operators.FactorArithmetric.FactorArithmetric factorbinary_operator)
        {
            Function function = new Functions.FactorArithmetric.FactorArithmetric(factorbinary_operator);

            Shape y_shape = function.OutputShapes(x1.Shape, x2.Shape)[0];

            Tensor y = new Tensor(y_shape);

            function.Execute(new Tensor[] { x1, x2 }, new Tensor[] { y });

            return(y);
        }
        /// <summary>2項演算</summary>
        internal static VariableNode FactorArithmetric(VariableNode x1, VariableNode x2, Operators.FactorArithmetric.FactorArithmetric factorbinary_operator)
        {
            Function function = new Functions.FactorArithmetric.FactorArithmetric(factorbinary_operator);

            return(Apply(function, x1, x2)[0]);
        }