Beispiel #1
0
        public static LogicTree Create()
        {
            LogicTree logicTree = new LogicTree();

            return(logicTree);

            // TODO: Edit factory method of LogicTree
            // This method should be able to configure the object in all possible ways.
            // Add as many parameters as needed,
            // and assign their values to each field by using the API.
        }
Beispiel #2
0
 public static bool Evaluate(LogicTree Tree)
 {
     return(true);
 }