Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            KnowledgeBase kb = new KnowledgeBase("input.txt");

            kb.Process();
            kb.write("1512387_1512491.txt");
        }
Ejemplo n.º 2
0
 public KnowledgeBase(KnowledgeBase p)
 {
     arrProposition = new SortedSet <Proposition>(p.arrProposition, new MyCompare_2());
 }