AIMA.Core.Logic.Propositional.Parsing.Ast.BinarySentence.BinarySentence C# (CSharp) Method

BinarySentence() public method

public BinarySentence ( String op, Sentence first, Sentence second ) : System
op String
first Sentence
second Sentence
return System
        public BinarySentence(String op, Sentence first, Sentence second)
        {
            this.op = op;
            this.first = first;
            this.second = second;

        }