-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
java.lang.NoSuchMethodError: 'arb.Real arb.Real.j(int, arb.Real)'
at k-2*j(k,x)func.evaluate(Unknown Source) at arb4j/arb.functions.real.RealFunction.eval(RealFunction.java:222) at arb4j/arb.expressions.nodes.unary.SphericalBesselFunctionNodeOfTheFirstKindTest.testj0ViaRealFunctionalExpression(SphericalBesselFunctionNodeOfTheFirstKindTest.java:25) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) at java.base/java.lang.reflect.Method.invoke(Method.java:580) at [email protected]/junit.framework.TestCase.runTest(TestCase.java:177) at [email protected]/junit.framework.TestCase.runBare(TestCase.java:142) at [email protected]/junit.framework.TestResult$1.protect(TestResult.java:122) at [email protected]/junit.framework.TestResult.runProtected(TestResult.java:142) at [email protected]/junit.framework.TestResult.run(TestResult.java:125) at [email protected]/junit.framework.TestCase.run(TestCase.java:130) at [email protected]/junit.framework.TestSuite.runTest(TestSuite.java:241) at [email protected]/junit.framework.TestSuite.run(TestSuite.java:236) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:40) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:530) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:758) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:453) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:211) #253 gr8
- Loading branch information
Showing
7 changed files
with
86 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
src/main/java/arb/functions/real/RealNullaryFunctional.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package arb.functions.real; | ||
|
||
import arb.documentation.BusinessSourceLicenseVersionOnePointOne; | ||
import arb.documentation.TheArb4jLibrary; | ||
import arb.expressions.Context; | ||
import arb.functions.Function; | ||
import arb.functions.NullaryFunction; | ||
|
||
/** | ||
* | ||
* @see BusinessSourceLicenseVersionOnePointOne © terms of the | ||
* {@link TheArb4jLibrary} | ||
*/ | ||
public interface RealNullaryFunctional extends | ||
RealFunctional<Object>, | ||
NullaryFunction<RealFunction> | ||
{ | ||
|
||
@Override | ||
default RealFunction evaluate(int bits) | ||
{ | ||
return evaluate(null, 0, bits, null); | ||
} | ||
|
||
public default RealFunction evaluate() | ||
{ | ||
return evaluate(null, 0); | ||
} | ||
|
||
public static RealNullaryFunctional express(String expression, Context context) | ||
{ | ||
return express(null, expression, context); | ||
} | ||
|
||
public static RealNullaryFunctional express(String expression) | ||
{ | ||
return express(null, expression, null); | ||
} | ||
|
||
public static RealNullaryFunctional express(String name, String expression, Context context) | ||
{ | ||
return Function.express(Object.class, RealFunction.class, RealNullaryFunctional.class, name, expression, context); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,4 @@ TODO: builtin sykbols for the classical orthogonal polynomials | |
"limit" is null at arb4j/arb.expressions.nodes.IntegralNode.evaluateIndefiniteIntegralAt(IntegralNode.java:217) | ||
todo: mouse wheel zooms control or whole scene | ||
expr compiler: fractional derivatices | ||
java.lang.NoClassDefFoundError: k-2*j(k,x)funcat k-2*j(k,x).evaluate(Unknown Source)at arb4j/arb.functions.Function.evaluate(Function.java:240)at arb4j/arb.functions.Function.evaluate(Function.java:220)at arb4j/arb.functions.integer.Sequence.evaluate(Sequence.java:47)at arb4j/arb.expressions.nodes.unary.SphericalBesselFunctionNodeOfTheFirstKindTest.testj0ViaRealFunctionalExpression(SphericalBesselFunctionNodeOfTheFirstKindTest.java:24)at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)at java.base/java.lang.reflect.Method.invoke(Method.java:580)at [email protected]/junit.framework.TestCase.runTest(TestCase.java:177)at [email protected]/junit.framework.TestCase.runBare(TestCase.java:142)at [email protected]/junit.framework.TestResult$1.protect(TestResult.java:122)at [email protected]/junit.framework.TestResult.runProtected(TestResult.java:142)at [email protected]/junit.framework.TestResult.run(TestResult.java:125)at [email protected]/junit.framework.TestCase.run(TestCase.java:130)at [email protected]/junit.framework.TestSuite.runTest(TestSuite.java:241)at [email protected]/junit.framework.TestSuite.run(TestSuite.java:236)at [email protected]/org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:90)at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:93)at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:40)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:530)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:758)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:453)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:211)Caused by: java.lang.ClassNotFoundException: k-2*j(k,x)funcat java.base/java.lang.ClassLoader.findClass(ClassLoader.java:735)at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:595)at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:528)... 22 more | ||
arb.exceptions.UndefinedReferenceException: Undefined reference to variable 'a' at position=-1 in expression=null, independent variable is x and ascendentExpression is null, remaining='null'at arb4j/arb.expressions.nodes.VariableNode.resolveInheritedVariableReference(VariableNode.java:468)at arb4j/arb.expressions.nodes.VariableNode.resolveReference(VariableNode.java:539)at arb4j/arb.expressions.nodes.VariableNode.<init>(VariableNode.java:115)at arb4j/arb.expressions.nodes.VariableNode.spliceInto(VariableNode.java:560)at arb4j/arb.expressions.nodes.binary.AdditionNode.spliceInto(AdditionNode.java:49)at arb4j/arb.expressions.nodes.binary.AdditionNode.spliceInto(AdditionNode.java:49)at arb4j/arb.expressions.nodes.DerivativeNode.spliceInto(DerivativeNode.java:168)at arb4j/arb.expressions.Expression.generateEvaluationMethod(Expression.java:998)at arb4j/arb.expressions.Expression.generate(Expression.java:812)at arb4j/arb.expressions.Expression.defineClass(Expression.java:595)at arb4j/arb.expressions.Expression.getInstance(Expression.java:1319)at arb4j/arb.expressions.Expression.instantiate(Expression.java:1468)at arb4j/arb.functions.Function.instantiate(Function.java:126)at arb4j/arb.functions.Function.express(Function.java:89)at arb4j/arb.functions.real.RealFunctional.express(RealFunctional.java:29)at arb4j/arb.functions.real.RealFunctional.express(RealFunctional.java:18)at arb4j/arb.expressions.ExpressionTest.testRealFunctionDerivative(ExpressionTest.java:171)at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)at java.base/java.lang.reflect.Method.invoke(Method.java:580)at [email protected]/junit.framework.TestCase.runTest(TestCase.java:177)at [email protected]/junit.framework.TestCase.runBare(TestCase.java:142)at [email protected]/junit.framework.TestResult$1.protect(TestResult.java:122)at [email protected]/junit.framework.TestResult.runProtected(TestResult.java:142)at [email protected]/junit.framework.TestResult.run(TestResult.java:125)at [email protected]/junit.framework.TestCase.run(TestCase.java:130)at [email protected]/junit.framework.TestSuite.runTest(TestSuite.java:241)at [email protected]/junit.framework.TestSuite.run(TestSuite.java:236)at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128)at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:40)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:530)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:758)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:453)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:211) | ||
java.lang.NoSuchMethodError: 'arb.Real arb.Real.j(int, arb.Real)'at k-2*j(k,x)func.evaluate(Unknown Source)at arb4j/arb.functions.real.RealFunction.eval(RealFunction.java:222)at arb4j/arb.expressions.nodes.unary.SphericalBesselFunctionNodeOfTheFirstKindTest.testj0ViaRealFunctionalExpression(SphericalBesselFunctionNodeOfTheFirstKindTest.java:25)at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)at java.base/java.lang.reflect.Method.invoke(Method.java:580)at [email protected]/junit.framework.TestCase.runTest(TestCase.java:177)at [email protected]/junit.framework.TestCase.runBare(TestCase.java:142)at [email protected]/junit.framework.TestResult$1.protect(TestResult.java:122)at [email protected]/junit.framework.TestResult.runProtected(TestResult.java:142)at [email protected]/junit.framework.TestResult.run(TestResult.java:125)at [email protected]/junit.framework.TestCase.run(TestCase.java:130)at [email protected]/junit.framework.TestSuite.runTest(TestSuite.java:241)at [email protected]/junit.framework.TestSuite.run(TestSuite.java:236)at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:128)at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:40)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:530)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:758)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:453)at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:211) |