aboutsummaryrefslogtreecommitdiff
path: root/src/uk/ac/ox/cs/pagoda/rules/DisjunctiveProgram.java
blob: 6ebe6664f839b0c3f0acd36ad26c7273daa08e3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package uk.ac.ox.cs.pagoda.rules;

public class DisjunctiveProgram extends UpperProgram {

	@Override
	protected void initApproximator() {
		m_approx = new OverApproxExist(); 
	}
	
//	@Override
//	public String getDirectory() {
//		File dir = new File(ontologyDirectory + Utility.FILE_SEPARATOR + "disjunctiveRules");
//		if (!dir.exists())
//			dir.mkdirs();
//		return dir.getPath(); 
//	}
	
}