Esempio n. 1
0
        public void intersectFixedTest()
        {
            NatSet other = new NatSet();

            insert(20);
            insert(25);
            insert(105);
            insert(120);
            other.insert(20);
            other.insert(105);
            other.insert(115);

            this.intersect(other);
        }
Esempio n. 2
0
        public void unionFixedTest()
        {
            NatSet other = new NatSet();

            insert(20);
            insert(25);
            insert(105);
            insert(120);
            other.insert(20);
            other.insert(105);
            other.insert(115);

            this.union(other);
        }