demo.TheDemo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brunner-owlAPI Show documentation
Show all versions of brunner-owlAPI Show documentation
OWLAPI module for the BRunner project
The newest version!
package demo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import app.BRunnerApplication;
/**
* Demo class for BRunner.
*/
public class TheDemo extends BRunnerApplication {
static Logger LOG = LoggerFactory.getLogger(TheDemo.class);
/**
* Configuration file for explanations
*/
public static final String configurationfile = "./src/test/resources/config-files/explanation.brn";
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
bench(configurationfile,args);
}
}