示例#1
0
        public Database()
        {
            this.changed = false;

            this.expressions = new ExpressionBase();
            this.knowledge = new List<Transposition>();
            this.transpositions = new List<Transposition>();
        }
示例#2
0
        public Database(ExpressionBase expressions, List<Transposition> knowledge,
            List<Transposition> transpositions)
        {
            this.changed = false;

            this.knowledge = knowledge;
            this.expressions = expressions;
            this.transpositions = transpositions;
        }