Skip to content
Snippets Groups Projects
Commit 5d9297d1 authored by francois.grand's avatar francois.grand
Browse files

#46 correction d'un bug dans Nub.CalcSerie() où this._result n'était pas...

 #46 correction d'un bug dans Nub.CalcSerie() où this._result n'était pas affecté dans le cas d'un paramètre fixe.
parent 36dc4faf
No related branches found
No related tags found
No related merge requests found
......@@ -108,7 +108,7 @@ export abstract class Nub extends ComputeNode {
rInit = computedParam.v;
if (variatedParam == undefined)
this.Calc(computedSymbol, rInit, rPrec); // résultat dans this._result
this._result = this.Calc(computedSymbol, rInit, rPrec); // résultat dans this._result
else {
const res = new Result();
variatedParam.paramValues.initIterator();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment