You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am looking at the implementation of the Symja Integrate function which, from what I see, is based on a Java translation of Rubi rules. I have a couple of basic questions about that.
Does Symja have any other integration algorithms aside from Rubi? I don't see anything, but I might have missed something.
Is there a way to get some report from Integrate about how many rules were tried and which one eventually matched, if any?
Does the Integrate function try one rule after another, so the execution time is approximately proportional to the number of rules tried?
Thanks for any light you can shed on these questions.
The text was updated successfully, but these errors were encountered:
I am looking at the implementation of the Symja Integrate function which, from what I see, is based on a Java translation of Rubi rules. I have a couple of basic questions about that.
* Does Symja have any other integration algorithms aside from Rubi? I don't see anything, but I might have missed something.
* Does the `Integrate` function try one rule after another, so the execution time is approximately proportional to the number of rules tried?
Yes one rule is tried after the other. Sometimes rules can be skipped because of unequal patternHash values.
In #1009 I want to create the java source for a decision tree from pattern-matching rules.
I have uncommited changes for a very "basic idea" (means not usable for the Rubi rules yet) how to create the decision tree.
I am looking at the implementation of the Symja
Integrate
function which, from what I see, is based on a Java translation of Rubi rules. I have a couple of basic questions about that.Integrate
about how many rules were tried and which one eventually matched, if any?Integrate
function try one rule after another, so the execution time is approximately proportional to the number of rules tried?Thanks for any light you can shed on these questions.
The text was updated successfully, but these errors were encountered: