Newer
Older
package Main;
import java.util.Map;
import FaultTree.*;
import Heuristics.Heuristic;
public class Main {
public static void main(String[] args) throws Exception {
String heuristicArg = args[0];
Heuristic heuristic;
case "h1":
case "depth-first":
heuristic = null; // TODO
break;
case "h4":
case "by-weight":
heuristic = new ByWeightHeuristic();
break;