mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fix #6644
This commit is contained in:
parent
8a3a3dc91b
commit
b4ad747e0b
|
@ -2259,6 +2259,24 @@ class JavaExample
|
||||||
System.out.println(e1.equals(e3));
|
System.out.println(e1.equals(e3));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void stringExample() {
|
||||||
|
System.out.println("String example");
|
||||||
|
Context ctx = new Context();
|
||||||
|
var a = ctx.mkToRe(ctx.mkString("abcd"));
|
||||||
|
var b = ctx.mkFullRe(ctx.mkReSort(ctx.mkStringSort()));
|
||||||
|
System.out.println(a);
|
||||||
|
System.out.println(b);
|
||||||
|
System.out.println(a.getSort());
|
||||||
|
System.out.println(b.getSort());
|
||||||
|
var c = ctx.mkConcat(ctx.mkToRe(ctx.mkString("abc")),
|
||||||
|
ctx.mkFullRe(ctx.mkReSort(ctx.mkStringSort())),
|
||||||
|
ctx.mkEmptyRe(ctx.mkReSort(ctx.mkStringSort())),
|
||||||
|
ctx.mkAllcharRe(ctx.mkReSort(ctx.mkStringSort())),
|
||||||
|
ctx.mkToRe(ctx.mkString("d")));
|
||||||
|
System.out.println(c);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args)
|
public static void main(String[] args)
|
||||||
{
|
{
|
||||||
JavaExample p = new JavaExample();
|
JavaExample p = new JavaExample();
|
||||||
|
@ -2274,12 +2292,15 @@ class JavaExample
|
||||||
System.out.print("Z3 Full Version String: ");
|
System.out.print("Z3 Full Version String: ");
|
||||||
System.out.println(Version.getFullVersion());
|
System.out.println(Version.getFullVersion());
|
||||||
|
|
||||||
|
p.stringExample();
|
||||||
|
|
||||||
p.simpleExample();
|
p.simpleExample();
|
||||||
|
|
||||||
{ // These examples need model generation turned on.
|
{ // These examples need model generation turned on.
|
||||||
HashMap<String, String> cfg = new HashMap<String, String>();
|
HashMap<String, String> cfg = new HashMap<String, String>();
|
||||||
cfg.put("model", "true");
|
cfg.put("model", "true");
|
||||||
Context ctx = new Context(cfg);
|
Context ctx = new Context(cfg);
|
||||||
|
|
||||||
|
|
||||||
p.optimizeExample(ctx);
|
p.optimizeExample(ctx);
|
||||||
p.basicTests(ctx);
|
p.basicTests(ctx);
|
||||||
|
|
|
@ -2175,10 +2175,10 @@ public class Context implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Convert a regular expression that accepts sequence s.
|
* Convert a regular expression that accepts sequence s.
|
||||||
*/
|
*/
|
||||||
public final <R extends Sort> ReExpr<R> mkToRe(Expr<SeqSort<R>> s)
|
public final <R extends Sort> ReExpr<SeqSort<R>> mkToRe(Expr<SeqSort<R>> s)
|
||||||
{
|
{
|
||||||
checkContextMatch(s);
|
checkContextMatch(s);
|
||||||
return (ReExpr<R>) Expr.create(this, Native.mkSeqToRe(nCtx(), s.getNativeObject()));
|
return (ReExpr<SeqSort<R>>) Expr.create(this, Native.mkSeqToRe(nCtx(), s.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -2296,7 +2296,7 @@ public class Context implements AutoCloseable {
|
||||||
* Create the empty regular expression.
|
* Create the empty regular expression.
|
||||||
* Coresponds to re.none
|
* Coresponds to re.none
|
||||||
*/
|
*/
|
||||||
public final <R extends Sort> ReExpr<R> mkEmptyRe(R s)
|
public final <R extends Sort> ReExpr<R> mkEmptyRe(ReSort<R> s)
|
||||||
{
|
{
|
||||||
return (ReExpr<R>) Expr.create(this, Native.mkReEmpty(nCtx(), s.getNativeObject()));
|
return (ReExpr<R>) Expr.create(this, Native.mkReEmpty(nCtx(), s.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
@ -2305,16 +2305,17 @@ public class Context implements AutoCloseable {
|
||||||
* Create the full regular expression.
|
* Create the full regular expression.
|
||||||
* Corresponds to re.all
|
* Corresponds to re.all
|
||||||
*/
|
*/
|
||||||
public final <R extends Sort> ReExpr<R> mkFullRe(R s)
|
public final <R extends Sort> ReExpr<R> mkFullRe(ReSort<R> s)
|
||||||
{
|
{
|
||||||
return (ReExpr<R>) Expr.create(this, Native.mkReFull(nCtx(), s.getNativeObject()));
|
return (ReExpr<R>) Expr.create(this, Native.mkReFull(nCtx(), s.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create regular expression that accepts all characters
|
* Create regular expression that accepts all characters
|
||||||
|
* R has to be a sequence sort.
|
||||||
* Corresponds to re.allchar
|
* Corresponds to re.allchar
|
||||||
*/
|
*/
|
||||||
public final <R extends Sort> ReExpr<R> mkAllcharRe(R s)
|
public final <R extends Sort> ReExpr<R> mkAllcharRe(ReSort<R> s)
|
||||||
{
|
{
|
||||||
return (ReExpr<R>) Expr.create(this, Native.mkReAllchar(nCtx(), s.getNativeObject()));
|
return (ReExpr<R>) Expr.create(this, Native.mkReAllchar(nCtx(), s.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
@ -2322,10 +2323,10 @@ public class Context implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Create a range expression.
|
* Create a range expression.
|
||||||
*/
|
*/
|
||||||
public final <R extends Sort> ReExpr<R> mkRange(Expr<SeqSort<CharSort>> lo, Expr<SeqSort<CharSort>> hi)
|
public final ReExpr<SeqSort<CharSort>> mkRange(Expr<SeqSort<CharSort>> lo, Expr<SeqSort<CharSort>> hi)
|
||||||
{
|
{
|
||||||
checkContextMatch(lo, hi);
|
checkContextMatch(lo, hi);
|
||||||
return (ReExpr<R>) Expr.create(this, Native.mkReRange(nCtx(), lo.getNativeObject(), hi.getNativeObject()));
|
return (ReExpr<SeqSort<CharSort>>) Expr.create(this, Native.mkReRange(nCtx(), lo.getNativeObject(), hi.getNativeObject()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue