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();
h.setSolver(stp());
Regexp sigmaStar = h.starRegexp(h.orRegexp(h.orRegexp(charRegexp(alpha, h))));
Expression query = h.concatExpr(h.constExpr("UPDATE c SET w='"), h.varExpr("v"), h.constExpr("'"));