Example #1
0
        public UnaryFunctionCall(UnaryFunction f, Computable x)
        {
            this.f = f;
            this.x = x;

            this.type = f.type == ValueType.Indifferent ? x.type : f.type;
        }
Example #2
0
        public UnaryFunctionCall(UnaryFunction f, Computable x) {
            this.f = f;
            this.x = x;

            this.type = f.type == ValueType.Indifferent ? x.type : f.type;
        }