MCPcopy Create free account
hub / github.com/Z3Prover/z3 / mkRecFuncDecl

Method mkRecFuncDecl

src/api/java/Context.java:639–645  ·  view source on GitHub ↗

Creates a new recursive function declaration.

(Symbol name, Sort[] domain, R range)

Source from the content-addressed store, hash-verified

637 * Creates a new recursive function declaration.
638 **/
639 public final <R extends Sort> FuncDecl<R> mkRecFuncDecl(Symbol name, Sort[] domain, R range)
640 {
641 checkContextMatch(name);
642 checkContextMatch(domain);
643 checkContextMatch(range);
644 return new FuncDecl<>(this, name, domain, range, true);
645 }
646
647
648 /**

Callers 1

FuncDeclMethod · 0.80

Calls 1

checkContextMatchMethod · 0.95

Tested by

no test coverage detected