3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 18:15:32 +00:00
This commit is contained in:
Christoph M. Wintersteiger 2016-02-12 18:32:46 +00:00
commit 6319861e26
14 changed files with 232 additions and 10 deletions

View file

@ -44,6 +44,15 @@ public class ParamDescrs extends Z3Object
getContext().nCtx(), getNativeObject(), name.getNativeObject()));
}
/**
* Retrieve documentation of parameter.
**/
public String getDocumentation(Symbol name)
{
return Native.paramDescrsGetDocumentation(getContext().nCtx(), getNativeObject(), name.getNativeObject());
}
/**
* Retrieve all names of parameters.
*