assertTrue(solve.isSatisfiable());
System.out.println(solve);
}
public void testGrammarBound6() throws Exception{
Grammar g = new Parser(GrammarTests.DIR + "tiny_SQL.txt").parse();
GrammarStringBounder gsb = new GrammarStringBounder();
int bound = 21;
Regexp boundedRegexp = gsb.getBoundedRegexp(g, "UpdateStmt", bound, false);
Set<Character> alpha = boundedRegexp.getUsedCharacters();
Hampi h = new Hampi();