3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 10:05:32 +00:00

update input for doxygen #5400

This commit is contained in:
Nikolaj Bjorner 2021-12-05 09:04:18 -08:00
parent c845b22c15
commit 0d055b83eb
2 changed files with 9 additions and 10 deletions

View file

@ -1717,9 +1717,8 @@ public class Context implements AutoCloseable {
* {@code [domain -> range]}, and {@code i} must have the sort
* {@code domain}. The sort of the result is {@code range}.
*
* @see #mkArraySort
* @see #mkArraySort(Sort[], Sort)
* @see #mkStore
**/
public <D extends Sort, R extends Sort> Expr<R> mkSelect(Expr<ArraySort<D, R>> a, Expr<D> i)
{
@ -1740,7 +1739,7 @@ public class Context implements AutoCloseable {
* {@code [domains -> range]}, and {@code args} must have the sorts
* {@code domains}. The sort of the result is {@code range}.
*
* @see #mkArraySort
* @see #mkArraySort(Sort[], Sort)
* @see #mkStore
**/
public <R extends Sort> Expr<R> mkSelect(Expr<ArraySort<Sort, R>> a, Expr<?>[] args)
@ -1764,7 +1763,7 @@ public class Context implements AutoCloseable {
* {@code select}) on all indices except for {@code i}, where it
* maps to {@code v} (and the {@code select} of {@code a}
* with respect to {@code i} may be a different value).
* @see #mkArraySort
* @see #mkArraySort(Sort[], Sort)
* @see #mkSelect
**/
@ -1789,7 +1788,7 @@ public class Context implements AutoCloseable {
* {@code select}) on all indices except for {@code args}, where it
* maps to {@code v} (and the {@code select} of {@code a}
* with respect to {@code args} may be a different value).
* @see #mkArraySort
* @see #mkArraySort(Sort[], Sort)
* @see #mkSelect
**/
@ -1807,7 +1806,7 @@ public class Context implements AutoCloseable {
* Remarks: The resulting term is an array, such
* that a {@code select} on an arbitrary index produces the value
* {@code v}.
* @see #mkArraySort
* @see #mkArraySort(Sort[], Sort)
* @see #mkSelect
*
**/
@ -1827,7 +1826,7 @@ public class Context implements AutoCloseable {
* {@code f} must have type {@code range_1 .. range_n -> range}.
* {@code v} must have sort range. The sort of the result is
* {@code [domain_i -> range]}.
* @see #mkArraySort
* @see #mkArraySort(Sort[], Sort)
* @see #mkSelect
* @see #mkStore