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:
parent
54e5bf2422
commit
8bb0010dc3
9 changed files with 91 additions and 110 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue