static void Main(string[] args) { KnowledgeBase kb = new KnowledgeBase("input.txt"); kb.Process(); kb.write("1512387_1512491.txt"); }
public KnowledgeBase(KnowledgeBase p) { arrProposition = new SortedSet <Proposition>(p.arrProposition, new MyCompare_2()); }