Cover Set Algorithm
First time
- Create temporary table which contain the examples not covered by Hyp1, Hyp2, … and, Hypn
TmpTable (name type, class type);
WHERE (T2.class=‘class1’ AND
Second time
- Delete the examples covered by Hyp1, Hyp2, … or Hypn from temporary table
WHERE ( T1.class=‘class1’ AND
... Conditions of Hypn) )