3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

Javadoc and indentation fixes

- A proper way to refer to the function in the same class is "#funcName"

- There is no point in "@param p" declaration if no description follows
it.
This commit is contained in:
George Karpenkov 2016-01-06 11:19:26 +01:00
parent 54e5bf2422
commit 8bb0010dc3
9 changed files with 91 additions and 110 deletions

View file

@ -45,9 +45,6 @@ public class FuncDecl extends AST
other.getNativeObject()));
}
/**
* A string representations of the function declaration.
**/
@Override
public String toString()
{
@ -79,7 +76,7 @@ public class FuncDecl extends AST
/**
* The size of the domain of the function declaration
* @see getArity
* @see #getArity
**/
public int getDomainSize()
{
@ -362,9 +359,6 @@ public class FuncDecl extends AST
/**
* Create expression that applies function to arguments.
* @param args
*
* @return
**/
public Expr apply(Expr ... args)
{