Skip to content

Commit

Permalink
clean up/JUnit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
axkr committed Dec 6, 2024
1 parent 2a7a19c commit b74aa70
Show file tree
Hide file tree
Showing 7 changed files with 2,268 additions and 2,172 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ public int[] expectedArgSize(IAST ast) {

@Override
public void setUp(final ISymbol newSymbol) {
newSymbol.setAttributes(ISymbol.HOLDALL);
newSymbol.setAttributes(ISymbol.HOLDFIRST);
}
}

Expand Down Expand Up @@ -1236,7 +1236,7 @@ protected IExpr getResult(IExpr symbolValue, IExpr calculatedResult) {

@Override
public void setUp(final ISymbol newSymbol) {
newSymbol.setAttributes(ISymbol.HOLDALL);
newSymbol.setAttributes(ISymbol.HOLDFIRST);
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package org.matheclipse.core.builtin;

import org.matheclipse.core.basic.OperationSystem;
import org.matheclipse.core.eval.Errors;
import org.matheclipse.core.eval.EvalEngine;
import org.matheclipse.core.eval.interfaces.AbstractEvaluator;
import org.matheclipse.core.expression.F;
import org.matheclipse.core.expression.ImplementationStatus;
import org.matheclipse.core.expression.S;
import org.matheclipse.core.interfaces.IAST;
import org.matheclipse.core.interfaces.IASTMutable;
Expand Down Expand Up @@ -68,6 +68,11 @@ private static IExpr filterHead(IAST list, final int radius, IExpr filterHead,
return result;
}

@Override
public int status() {
return ImplementationStatus.EXPERIMENTAL;
}

@Override
public int[] expectedArgSize(IAST ast) {
return ARGS_2_2;
Expand Down
Loading

0 comments on commit b74aa70

Please sign in to comment.