00001
00002 import edu.tum.cs.wcsp.WCSPConverter;
00003
00004
00005
00006
00007
00008
00009
00010
00011 public class MLN2WCSP {
00012
00017 public static void main(String[] args) throws Exception {
00018 if(args.length < 3) {
00019 System.out.println("usage: MLN2WCSP <MLN file> <evidence database file> <WCSP output file> [scenario output file]");
00020 return;
00021 }
00022
00023 WCSPConverter converter = new WCSPConverter(args[0], args[1]);
00024 String scenarioFile = null;
00025 if(args.length >= 4)
00026 scenarioFile = args[3];
00027 converter.run(args[2], scenarioFile);
00028 }
00029 }