You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Julia,
I found this project would be helpful for me. However, I cannot boot it up with my client code. The problem I encountered was building the project and executing with client code with mvn compile exec:java results in a /RegexLexer.java:2: error: package org.antlr.v4.runtime does not exist. My client code is as follows:
// Test.java
package com.github.hycos.regex2smtlib;
import com.github.hycos.regex2smtlib.Translator;
public class Test {
public static void main(String[] args) {
try {
String constraint = Translator.INSTANCE.translateToConstraint("z3","abc*","v1");
} catch (Exception e) {
}
}
}
I put the Test.java in src/main/java/com/github/hycos/regex2smtlib. Do you have any idea about how to boot it up? It's an old project though :) Thank you in advance!
The text was updated successfully, but these errors were encountered:
Hi Julia,
I found this project would be helpful for me. However, I cannot boot it up with my client code. The problem I encountered was building the project and executing with client code with
mvn compile exec:java
results in a/RegexLexer.java:2: error: package org.antlr.v4.runtime does not exist
. My client code is as follows:I put the
Test.java
insrc/main/java/com/github/hycos/regex2smtlib
. Do you have any idea about how to boot it up? It's an old project though :) Thank you in advance!The text was updated successfully, but these errors were encountered: