Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
axkr committed Oct 25, 2024
1 parent 7b3a9c9 commit e9a82e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static IPattern valueOf(final IExpr condition) {
/** Use the default value, if no matching expression was found */
protected final boolean fDefault;

public Blank() {
protected Blank() {
this(null);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7468,6 +7468,10 @@ public static IAST N(final IExpr symbolicExpr, final IExpr precision) {
return new AST2(N, symbolicExpr, precision);
}

public static IAST N(final IExpr symbolicExpr, long precision) {
return new AST2(N, symbolicExpr, F.ZZ(precision));
}

public static IAST NakagamiDistribution(final IExpr a0, final IExpr a1) {
return new AST2(NakagamiDistribution, a0, a1);
}
Expand Down

0 comments on commit e9a82e5

Please sign in to comment.