private MoreThanSAT() {
// to silent PMD audit
}
public static void main(final String[] args) {
final ISolver solver = SolverFactory.newDefault();
final SolutionCounter sc = new SolutionCounter(solver);
solver.setTimeout(3600); // 1 hour timeout
Reader reader = new InstanceReader(solver);
// filename is given on the command line
try {
final IProblem problem = reader.parseInstance(args[0]);