Instrument the Datalog engine on which table representation to use for recursive predicate.
(FuncDecl<BoolSort> f, Symbol[] kinds)
| 240 | * recursive predicate. |
| 241 | **/ |
| 242 | public void setPredicateRepresentation(FuncDecl<BoolSort> f, Symbol[] kinds) |
| 243 | { |
| 244 | Native.fixedpointSetPredicateRepresentation(getContext().nCtx(), |
| 245 | getNativeObject(), f.getNativeObject(), AST.arrayLength(kinds), |
| 246 | Symbol.arrayToNative(kinds)); |
| 247 | |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * Convert benchmark given as set of axioms, rules and queries to a string. |
nothing calls this directly
no test coverage detected